Skip to content

Commit cb4be42

Browse files
1 parent d72af8b commit cb4be42

19 files changed

Lines changed: 192 additions & 78 deletions

File tree

clients/google-api-services-firebaseapphosting/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-firebaseapphosting</artifactId>
25-
<version>v1-rev20260129-2.0.0</version>
25+
<version>v1-rev20260219-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260219-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/ArchiveSource.java

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
public final class ArchiveSource extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Optional. The author contained in the metadata of a version control change.
34+
* Optional. Deprecated: Not used. The author contained in the metadata of a version control
35+
* change.
3536
* The value may be {@code null}.
3637
*/
3738
@com.google.api.client.util.Key
@@ -52,7 +53,10 @@ public final class ArchiveSource extends com.google.api.client.json.GenericJson
5253
private java.lang.String externalSignedUri;
5354

5455
/**
55-
* Optional. Relative path in the archive.
56+
* Optional. The directory relative to the root of the archive to use as the root for the deployed
57+
* web app. Defaults to use the root of the repository if not provided. If deploying a
58+
* [monorepo](https://firebase.google.com/docs/app-hosting/monorepos), this should be the
59+
* directory that contains the `package.json` or `apphosting.yaml` file.
5660
* The value may be {@code null}.
5761
*/
5862
@com.google.api.client.util.Key
@@ -67,15 +71,17 @@ public final class ArchiveSource extends com.google.api.client.json.GenericJson
6771
private java.lang.String userStorageUri;
6872

6973
/**
70-
* Optional. The author contained in the metadata of a version control change.
74+
* Optional. Deprecated: Not used. The author contained in the metadata of a version control
75+
* change.
7176
* @return value or {@code null} for none
7277
*/
7378
public SourceUserMetadata getAuthor() {
7479
return author;
7580
}
7681

7782
/**
78-
* Optional. The author contained in the metadata of a version control change.
83+
* Optional. Deprecated: Not used. The author contained in the metadata of a version control
84+
* change.
7985
* @param author author or {@code null} for none
8086
*/
8187
public ArchiveSource setAuthor(SourceUserMetadata author) {
@@ -118,15 +124,21 @@ public ArchiveSource setExternalSignedUri(java.lang.String externalSignedUri) {
118124
}
119125

120126
/**
121-
* Optional. Relative path in the archive.
127+
* Optional. The directory relative to the root of the archive to use as the root for the deployed
128+
* web app. Defaults to use the root of the repository if not provided. If deploying a
129+
* [monorepo](https://firebase.google.com/docs/app-hosting/monorepos), this should be the
130+
* directory that contains the `package.json` or `apphosting.yaml` file.
122131
* @return value or {@code null} for none
123132
*/
124133
public java.lang.String getRootDirectory() {
125134
return rootDirectory;
126135
}
127136

128137
/**
129-
* Optional. Relative path in the archive.
138+
* Optional. The directory relative to the root of the archive to use as the root for the deployed
139+
* web app. Defaults to use the root of the repository if not provided. If deploying a
140+
* [monorepo](https://firebase.google.com/docs/app-hosting/monorepos), this should be the
141+
* directory that contains the `package.json` or `apphosting.yaml` file.
130142
* @param rootDirectory rootDirectory or {@code null} for none
131143
*/
132144
public ArchiveSource setRootDirectory(java.lang.String rootDirectory) {

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/Codebase.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ public final class Codebase extends com.google.api.client.json.GenericJson {
4444

4545
/**
4646
* Optional. If `repository` is provided, the directory relative to the root of the repository to
47-
* use as the root for the deployed web app.
47+
* use as the root for the deployed web app. Defaults to use the root of the repository if not
48+
* provided. If deploying a [monorepo](https://firebase.google.com/docs/app-hosting/monorepos),
49+
* this should be the directory that contains the `package.json` or `apphosting.yaml` file.
4850
* The value may be {@code null}.
4951
*/
5052
@com.google.api.client.util.Key
@@ -79,7 +81,9 @@ public Codebase setRepository(java.lang.String repository) {
7981

8082
/**
8183
* Optional. If `repository` is provided, the directory relative to the root of the repository to
82-
* use as the root for the deployed web app.
84+
* use as the root for the deployed web app. Defaults to use the root of the repository if not
85+
* provided. If deploying a [monorepo](https://firebase.google.com/docs/app-hosting/monorepos),
86+
* this should be the directory that contains the `package.json` or `apphosting.yaml` file.
8387
* @return value or {@code null} for none
8488
*/
8589
public java.lang.String getRootDirectory() {
@@ -88,7 +92,9 @@ public java.lang.String getRootDirectory() {
8892

8993
/**
9094
* Optional. If `repository` is provided, the directory relative to the root of the repository to
91-
* use as the root for the deployed web app.
95+
* use as the root for the deployed web app. Defaults to use the root of the repository if not
96+
* provided. If deploying a [monorepo](https://firebase.google.com/docs/app-hosting/monorepos),
97+
* this should be the directory that contains the `package.json` or `apphosting.yaml` file.
9298
* @param rootDirectory rootDirectory or {@code null} for none
9399
*/
94100
public Codebase setRootDirectory(java.lang.String rootDirectory) {

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/CodebaseSource.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,17 @@ public final class CodebaseSource extends com.google.api.client.json.GenericJson
8080
@com.google.api.client.util.Key
8181
private java.lang.String hash;
8282

83+
/**
84+
* Output only. The resource name for the Developer Connect
85+
* [`gitRepositoryLink`](https://cloud.google.com/developer-
86+
* connect/docs/api/reference/rest/v1/projects.locations.connections.gitRepositoryLinks) used for
87+
* this build, in the format: `projects/{project}/locations/{location}/connections/{connection}/gi
88+
* tRepositoryLinks/{repositoryLink}`
89+
* The value may be {@code null}.
90+
*/
91+
@com.google.api.client.util.Key
92+
private java.lang.String repository;
93+
8394
/**
8495
* Output only. A URI linking to the codebase on an hosting provider's website. May not be valid
8596
* if the commit has been rebased or force-pushed out of existence in the linked repository.
@@ -209,6 +220,31 @@ public CodebaseSource setHash(java.lang.String hash) {
209220
return this;
210221
}
211222

223+
/**
224+
* Output only. The resource name for the Developer Connect
225+
* [`gitRepositoryLink`](https://cloud.google.com/developer-
226+
* connect/docs/api/reference/rest/v1/projects.locations.connections.gitRepositoryLinks) used for
227+
* this build, in the format: `projects/{project}/locations/{location}/connections/{connection}/gi
228+
* tRepositoryLinks/{repositoryLink}`
229+
* @return value or {@code null} for none
230+
*/
231+
public java.lang.String getRepository() {
232+
return repository;
233+
}
234+
235+
/**
236+
* Output only. The resource name for the Developer Connect
237+
* [`gitRepositoryLink`](https://cloud.google.com/developer-
238+
* connect/docs/api/reference/rest/v1/projects.locations.connections.gitRepositoryLinks) used for
239+
* this build, in the format: `projects/{project}/locations/{location}/connections/{connection}/gi
240+
* tRepositoryLinks/{repositoryLink}`
241+
* @param repository repository or {@code null} for none
242+
*/
243+
public CodebaseSource setRepository(java.lang.String repository) {
244+
this.repository = repository;
245+
return this;
246+
}
247+
212248
/**
213249
* Output only. A URI linking to the codebase on an hosting provider's website. May not be valid
214250
* if the commit has been rebased or force-pushed out of existence in the linked repository.

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/Config.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public final class Config extends com.google.api.client.json.GenericJson {
4343
/**
4444
* Optional. Supplied environment variables for a specific build. Provided at Build creation time
4545
* and immutable afterwards. This field is only applicable for Builds using a build image - (e.g.,
46-
* ContainerSource or ArchiveSource with locally_build_source) Attempts to set this for other
46+
* ContainerSource or ArchiveSource with locally_built_source) Attempts to set this for other
4747
* build types will result in an error
4848
* The value may be {@code null}.
4949
*/
@@ -84,7 +84,7 @@ public Config setEffectiveEnv(java.util.List<EnvironmentVariable> effectiveEnv)
8484
/**
8585
* Optional. Supplied environment variables for a specific build. Provided at Build creation time
8686
* and immutable afterwards. This field is only applicable for Builds using a build image - (e.g.,
87-
* ContainerSource or ArchiveSource with locally_build_source) Attempts to set this for other
87+
* ContainerSource or ArchiveSource with locally_built_source) Attempts to set this for other
8888
* build types will result in an error
8989
* @return value or {@code null} for none
9090
*/
@@ -95,7 +95,7 @@ public java.util.List<EnvironmentVariable> getEnv() {
9595
/**
9696
* Optional. Supplied environment variables for a specific build. Provided at Build creation time
9797
* and immutable afterwards. This field is only applicable for Builds using a build image - (e.g.,
98-
* ContainerSource or ArchiveSource with locally_build_source) Attempts to set this for other
98+
* ContainerSource or ArchiveSource with locally_built_source) Attempts to set this for other
9999
* build types will result in an error
100100
* @param env env or {@code null} for none
101101
*/

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/RunConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
package com.google.api.services.firebaseapphosting.v1.model;
1818

1919
/**
20-
* Additional configuration to apply to the Cloud Run [`service`](https://cloud.google.com/run/docs/
21-
* reference/rest/v2/projects.locations.services#resource:-service).
20+
* Configuration applied to the Cloud Run [`service`](https://cloud.google.com/run/docs/reference/re
21+
* st/v2/projects.locations.services#resource:-service).
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Firebase App Hosting API. For a detailed explanation

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/SourceUserMetadata.java

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.firebaseapphosting.v1.model;
1818

1919
/**
20-
* Metadata for the user who started the build.
20+
* Deprecated: Not used. Metadata for the user who started the build.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Firebase App Hosting API. For a detailed explanation
@@ -31,37 +31,38 @@
3131
public final class SourceUserMetadata extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Output only. The user-chosen displayname. May be empty.
34+
* Output only. Deprecated: Not used. The user-chosen displayname. May be empty.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.String displayName;
3939

4040
/**
41-
* Output only. The account email linked to the EUC that created the build. May be a service
42-
* account or other robot account.
41+
* Output only. Deprecated: Not used. The account email linked to the EUC that created the build.
42+
* May be a service account or other robot account.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
4646
private java.lang.String email;
4747

4848
/**
49-
* Output only. The URI of a profile photo associated with the user who created the build.
49+
* Output only. Deprecated: Not used. The URI of a profile photo associated with the user who
50+
* created the build.
5051
* The value may be {@code null}.
5152
*/
5253
@com.google.api.client.util.Key
5354
private java.lang.String imageUri;
5455

5556
/**
56-
* Output only. The user-chosen displayname. May be empty.
57+
* Output only. Deprecated: Not used. The user-chosen displayname. May be empty.
5758
* @return value or {@code null} for none
5859
*/
5960
public java.lang.String getDisplayName() {
6061
return displayName;
6162
}
6263

6364
/**
64-
* Output only. The user-chosen displayname. May be empty.
65+
* Output only. Deprecated: Not used. The user-chosen displayname. May be empty.
6566
* @param displayName displayName or {@code null} for none
6667
*/
6768
public SourceUserMetadata setDisplayName(java.lang.String displayName) {
@@ -70,17 +71,17 @@ public SourceUserMetadata setDisplayName(java.lang.String displayName) {
7071
}
7172

7273
/**
73-
* Output only. The account email linked to the EUC that created the build. May be a service
74-
* account or other robot account.
74+
* Output only. Deprecated: Not used. The account email linked to the EUC that created the build.
75+
* May be a service account or other robot account.
7576
* @return value or {@code null} for none
7677
*/
7778
public java.lang.String getEmail() {
7879
return email;
7980
}
8081

8182
/**
82-
* Output only. The account email linked to the EUC that created the build. May be a service
83-
* account or other robot account.
83+
* Output only. Deprecated: Not used. The account email linked to the EUC that created the build.
84+
* May be a service account or other robot account.
8485
* @param email email or {@code null} for none
8586
*/
8687
public SourceUserMetadata setEmail(java.lang.String email) {
@@ -89,15 +90,17 @@ public SourceUserMetadata setEmail(java.lang.String email) {
8990
}
9091

9192
/**
92-
* Output only. The URI of a profile photo associated with the user who created the build.
93+
* Output only. Deprecated: Not used. The URI of a profile photo associated with the user who
94+
* created the build.
9395
* @return value or {@code null} for none
9496
*/
9597
public java.lang.String getImageUri() {
9698
return imageUri;
9799
}
98100

99101
/**
100-
* Output only. The URI of a profile photo associated with the user who created the build.
102+
* Output only. Deprecated: Not used. The URI of a profile photo associated with the user who
103+
* created the build.
101104
* @param imageUri imageUri or {@code null} for none
102105
*/
103106
public SourceUserMetadata setImageUri(java.lang.String imageUri) {

clients/google-api-services-firebaseapphosting/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-firebaseapphosting</artifactId>
11-
<version>v1-rev20260129-2.0.0</version>
12-
<name>Firebase App Hosting API v1-rev20260129-2.0.0</name>
11+
<version>v1-rev20260219-2.0.0</version>
12+
<name>Firebase App Hosting API v1-rev20260219-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebaseapphosting/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-firebaseapphosting</artifactId>
25-
<version>v1-rev20260129-2.0.0</version>
25+
<version>v1-rev20260219-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260219-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseapphosting/v1beta/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-firebaseapphosting</artifactId>
25-
<version>v1beta-rev20260129-2.0.0</version>
25+
<version>v1beta-rev20260219-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260129-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260219-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)