Skip to content

Commit 91eef8b

Browse files
1 parent 7ecff61 commit 91eef8b

File tree

14 files changed

+371
-36
lines changed

14 files changed

+371
-36
lines changed

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-rev20250814-2.0.0</version>
25+
<version>v1-rev20250904-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-rev20250814-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20250904-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -447,22 +447,22 @@ public List setName(java.lang.String name) {
447447
}
448448

449449
/**
450-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
451-
* documented otherwise. This is primarily for internal usage.
450+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
451+
* is primarily intended for internal usage.
452452
*/
453453
@com.google.api.client.util.Key
454454
private java.util.List<java.lang.String> extraLocationTypes;
455455

456-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
457-
otherwise. This is primarily for internal usage.
456+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
457+
primarily intended for internal usage.
458458
*/
459459
public java.util.List<java.lang.String> getExtraLocationTypes() {
460460
return extraLocationTypes;
461461
}
462462

463463
/**
464-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
465-
* documented otherwise. This is primarily for internal usage.
464+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
465+
* is primarily intended for internal usage.
466466
*/
467467
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
468468
this.extraLocationTypes = extraLocationTypes;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.firebaseapphosting.v1.model;
18+
19+
/**
20+
* The URI of an storage archive or a signed URL to use as the build source.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Firebase App Hosting API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ArchiveSource extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The author contained in the metadata of a version control change.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private SourceUserMetadata author;
39+
40+
/**
41+
* Optional. An optional message that describes the uploaded version of the source code.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String description;
46+
47+
/**
48+
* Signed URL to an archive in a storage bucket.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String externalSignedUri;
53+
54+
/**
55+
* Optional. Relative path in the archive.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String rootDirectory;
60+
61+
/**
62+
* URI to an archive in Cloud Storage. The object must be a zipped (.zip) or gzipped archive file
63+
* (.tar.gz) containing source to deploy.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String userStorageUri;
68+
69+
/**
70+
* Optional. The author contained in the metadata of a version control change.
71+
* @return value or {@code null} for none
72+
*/
73+
public SourceUserMetadata getAuthor() {
74+
return author;
75+
}
76+
77+
/**
78+
* Optional. The author contained in the metadata of a version control change.
79+
* @param author author or {@code null} for none
80+
*/
81+
public ArchiveSource setAuthor(SourceUserMetadata author) {
82+
this.author = author;
83+
return this;
84+
}
85+
86+
/**
87+
* Optional. An optional message that describes the uploaded version of the source code.
88+
* @return value or {@code null} for none
89+
*/
90+
public java.lang.String getDescription() {
91+
return description;
92+
}
93+
94+
/**
95+
* Optional. An optional message that describes the uploaded version of the source code.
96+
* @param description description or {@code null} for none
97+
*/
98+
public ArchiveSource setDescription(java.lang.String description) {
99+
this.description = description;
100+
return this;
101+
}
102+
103+
/**
104+
* Signed URL to an archive in a storage bucket.
105+
* @return value or {@code null} for none
106+
*/
107+
public java.lang.String getExternalSignedUri() {
108+
return externalSignedUri;
109+
}
110+
111+
/**
112+
* Signed URL to an archive in a storage bucket.
113+
* @param externalSignedUri externalSignedUri or {@code null} for none
114+
*/
115+
public ArchiveSource setExternalSignedUri(java.lang.String externalSignedUri) {
116+
this.externalSignedUri = externalSignedUri;
117+
return this;
118+
}
119+
120+
/**
121+
* Optional. Relative path in the archive.
122+
* @return value or {@code null} for none
123+
*/
124+
public java.lang.String getRootDirectory() {
125+
return rootDirectory;
126+
}
127+
128+
/**
129+
* Optional. Relative path in the archive.
130+
* @param rootDirectory rootDirectory or {@code null} for none
131+
*/
132+
public ArchiveSource setRootDirectory(java.lang.String rootDirectory) {
133+
this.rootDirectory = rootDirectory;
134+
return this;
135+
}
136+
137+
/**
138+
* URI to an archive in Cloud Storage. The object must be a zipped (.zip) or gzipped archive file
139+
* (.tar.gz) containing source to deploy.
140+
* @return value or {@code null} for none
141+
*/
142+
public java.lang.String getUserStorageUri() {
143+
return userStorageUri;
144+
}
145+
146+
/**
147+
* URI to an archive in Cloud Storage. The object must be a zipped (.zip) or gzipped archive file
148+
* (.tar.gz) containing source to deploy.
149+
* @param userStorageUri userStorageUri or {@code null} for none
150+
*/
151+
public ArchiveSource setUserStorageUri(java.lang.String userStorageUri) {
152+
this.userStorageUri = userStorageUri;
153+
return this;
154+
}
155+
156+
@Override
157+
public ArchiveSource set(String fieldName, Object value) {
158+
return (ArchiveSource) super.set(fieldName, value);
159+
}
160+
161+
@Override
162+
public ArchiveSource clone() {
163+
return (ArchiveSource) super.clone();
164+
}
165+
166+
}

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,14 @@ public final class Backend extends com.google.api.client.json.GenericJson {
128128
@com.google.api.client.util.Key
129129
private java.lang.Boolean reconciling;
130130

131+
/**
132+
* Optional. A field that, if true, indicates that incoming request logs are disabled for this
133+
* backend. Incoming request logs are enabled by default.
134+
* The value may be {@code null}.
135+
*/
136+
@com.google.api.client.util.Key
137+
private java.lang.Boolean requestLogsDisabled;
138+
131139
/**
132140
* Required. The name of the service account used for Cloud Build and Cloud Run. Should have the
133141
* role roles/firebaseapphosting.computeRunner or equivalent permissions.
@@ -401,6 +409,25 @@ public Backend setReconciling(java.lang.Boolean reconciling) {
401409
return this;
402410
}
403411

412+
/**
413+
* Optional. A field that, if true, indicates that incoming request logs are disabled for this
414+
* backend. Incoming request logs are enabled by default.
415+
* @return value or {@code null} for none
416+
*/
417+
public java.lang.Boolean getRequestLogsDisabled() {
418+
return requestLogsDisabled;
419+
}
420+
421+
/**
422+
* Optional. A field that, if true, indicates that incoming request logs are disabled for this
423+
* backend. Incoming request logs are enabled by default.
424+
* @param requestLogsDisabled requestLogsDisabled or {@code null} for none
425+
*/
426+
public Backend setRequestLogsDisabled(java.lang.Boolean requestLogsDisabled) {
427+
this.requestLogsDisabled = requestLogsDisabled;
428+
return this;
429+
}
430+
404431
/**
405432
* Required. The name of the service account used for Cloud Build and Cloud Run. Should have the
406433
* role roles/firebaseapphosting.computeRunner or equivalent permissions.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class BuildSource extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* An archive source.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private ArchiveSource archive;
39+
3340
/**
3441
* A codebase source.
3542
* The value may be {@code null}.
@@ -44,6 +51,23 @@ public final class BuildSource extends com.google.api.client.json.GenericJson {
4451
@com.google.api.client.util.Key
4552
private ContainerSource container;
4653

54+
/**
55+
* An archive source.
56+
* @return value or {@code null} for none
57+
*/
58+
public ArchiveSource getArchive() {
59+
return archive;
60+
}
61+
62+
/**
63+
* An archive source.
64+
* @param archive archive or {@code null} for none
65+
*/
66+
public BuildSource setArchive(ArchiveSource archive) {
67+
this.archive = archive;
68+
return this;
69+
}
70+
4771
/**
4872
* A codebase source.
4973
* @return value or {@code null} for none

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ public final class Rollout extends com.google.api.client.json.GenericJson {
3939
private java.util.Map<String, java.lang.String> annotations;
4040

4141
/**
42-
* Immutable. The name of a build that already exists. It doesn't have to be built; a rollout will
43-
* wait for a build to be ready before updating traffic.
42+
* Required. Immutable. The name of a build that already exists. It doesn't have to be built; a
43+
* rollout will wait for a build to be ready before updating traffic.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
@@ -146,17 +146,17 @@ public Rollout setAnnotations(java.util.Map<String, java.lang.String> annotation
146146
}
147147

148148
/**
149-
* Immutable. The name of a build that already exists. It doesn't have to be built; a rollout will
150-
* wait for a build to be ready before updating traffic.
149+
* Required. Immutable. The name of a build that already exists. It doesn't have to be built; a
150+
* rollout will wait for a build to be ready before updating traffic.
151151
* @return value or {@code null} for none
152152
*/
153153
public java.lang.String getBuild() {
154154
return build;
155155
}
156156

157157
/**
158-
* Immutable. The name of a build that already exists. It doesn't have to be built; a rollout will
159-
* wait for a build to be ready before updating traffic.
158+
* Required. Immutable. The name of a build that already exists. It doesn't have to be built; a
159+
* rollout will wait for a build to be ready before updating traffic.
160160
* @param build build or {@code null} for none
161161
*/
162162
public Rollout setBuild(java.lang.String build) {

0 commit comments

Comments
 (0)