Skip to content

Commit 4b31aec

Browse files
1 parent c1fb99b commit 4b31aec

File tree

4 files changed

+96
-6
lines changed

4 files changed

+96
-6
lines changed

clients/google-api-services-firebase/v1beta1/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-firebase</artifactId>
25-
<version>v1beta1-rev20230918-2.0.0</version>
25+
<version>v1beta1-rev20240913-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-firebase:v1beta1-rev20230918-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebase:v1beta1-rev20240913-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebase/v1beta1/2.0.0/com/google/api/services/firebase/v1beta1/model/WebAppConfig.java

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,26 @@ public final class WebAppConfig extends com.google.api.client.json.GenericJson {
110110
@com.google.api.client.util.Key
111111
private java.lang.String projectId;
112112

113+
/**
114+
* Output only. Immutable. The globally unique, Google-assigned canonical identifier for the
115+
* Project. Use this identifier when configuring integrations and/or making API calls to Google
116+
* Cloud or third-party services.
117+
* The value may be {@code null}.
118+
*/
119+
@com.google.api.client.util.Key
120+
private java.lang.String projectNumber;
121+
122+
/**
123+
* Optional. Duplicate field for the URL of the default RTDB instances (if there is one) that uses
124+
* the same field name as the unified V2 config file format. We wanted to make a single config
125+
* file format for all the app platforms (Android, iOS and web) and we had to pick consistent
126+
* names for all the fields since there was some varience between the platforms. If the request
127+
* asks for the V2 format we will populate this field instead of realtime_database_instance_uri.
128+
* The value may be {@code null}.
129+
*/
130+
@com.google.api.client.util.Key
131+
private java.lang.String realtimeDatabaseUrl;
132+
113133
/**
114134
* **DEPRECATED.** _Instead, find the default Cloud Storage for Firebase bucket using the [list en
115135
* dpoint](https://firebase.google.com/docs/reference/rest/storage/rest/v1beta/projects.buckets/li
@@ -121,6 +141,13 @@ public final class WebAppConfig extends com.google.api.client.json.GenericJson {
121141
@com.google.api.client.util.Key
122142
private java.lang.String storageBucket;
123143

144+
/**
145+
* Version of the config specification.
146+
* The value may be {@code null}.
147+
*/
148+
@com.google.api.client.util.Key
149+
private java.lang.String version;
150+
124151
/**
125152
* The [`keyString`](https://cloud.google.com/api-
126153
* keys/docs/reference/rest/v2/projects.locations.keys#Key.FIELDS.key_string) of the API key
@@ -305,6 +332,52 @@ public WebAppConfig setProjectId(java.lang.String projectId) {
305332
return this;
306333
}
307334

335+
/**
336+
* Output only. Immutable. The globally unique, Google-assigned canonical identifier for the
337+
* Project. Use this identifier when configuring integrations and/or making API calls to Google
338+
* Cloud or third-party services.
339+
* @return value or {@code null} for none
340+
*/
341+
public java.lang.String getProjectNumber() {
342+
return projectNumber;
343+
}
344+
345+
/**
346+
* Output only. Immutable. The globally unique, Google-assigned canonical identifier for the
347+
* Project. Use this identifier when configuring integrations and/or making API calls to Google
348+
* Cloud or third-party services.
349+
* @param projectNumber projectNumber or {@code null} for none
350+
*/
351+
public WebAppConfig setProjectNumber(java.lang.String projectNumber) {
352+
this.projectNumber = projectNumber;
353+
return this;
354+
}
355+
356+
/**
357+
* Optional. Duplicate field for the URL of the default RTDB instances (if there is one) that uses
358+
* the same field name as the unified V2 config file format. We wanted to make a single config
359+
* file format for all the app platforms (Android, iOS and web) and we had to pick consistent
360+
* names for all the fields since there was some varience between the platforms. If the request
361+
* asks for the V2 format we will populate this field instead of realtime_database_instance_uri.
362+
* @return value or {@code null} for none
363+
*/
364+
public java.lang.String getRealtimeDatabaseUrl() {
365+
return realtimeDatabaseUrl;
366+
}
367+
368+
/**
369+
* Optional. Duplicate field for the URL of the default RTDB instances (if there is one) that uses
370+
* the same field name as the unified V2 config file format. We wanted to make a single config
371+
* file format for all the app platforms (Android, iOS and web) and we had to pick consistent
372+
* names for all the fields since there was some varience between the platforms. If the request
373+
* asks for the V2 format we will populate this field instead of realtime_database_instance_uri.
374+
* @param realtimeDatabaseUrl realtimeDatabaseUrl or {@code null} for none
375+
*/
376+
public WebAppConfig setRealtimeDatabaseUrl(java.lang.String realtimeDatabaseUrl) {
377+
this.realtimeDatabaseUrl = realtimeDatabaseUrl;
378+
return this;
379+
}
380+
308381
/**
309382
* **DEPRECATED.** _Instead, find the default Cloud Storage for Firebase bucket using the [list en
310383
* dpoint](https://firebase.google.com/docs/reference/rest/storage/rest/v1beta/projects.buckets/li
@@ -330,6 +403,23 @@ public WebAppConfig setStorageBucket(java.lang.String storageBucket) {
330403
return this;
331404
}
332405

406+
/**
407+
* Version of the config specification.
408+
* @return value or {@code null} for none
409+
*/
410+
public java.lang.String getVersion() {
411+
return version;
412+
}
413+
414+
/**
415+
* Version of the config specification.
416+
* @param version version or {@code null} for none
417+
*/
418+
public WebAppConfig setVersion(java.lang.String version) {
419+
this.version = version;
420+
return this;
421+
}
422+
333423
@Override
334424
public WebAppConfig set(String fieldName, Object value) {
335425
return (WebAppConfig) super.set(fieldName, value);

clients/google-api-services-firebase/v1beta1/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-firebase</artifactId>
11-
<version>v1beta1-rev20230918-2.0.0</version>
12-
<name>Firebase Management API v1beta1-rev20230918-2.0.0</name>
11+
<version>v1beta1-rev20240913-2.0.0</version>
12+
<name>Firebase Management API v1beta1-rev20240913-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebase/v1beta1/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-firebase</artifactId>
25-
<version>v1beta1-rev20230918-2.0.0</version>
25+
<version>v1beta1-rev20240913-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-firebase:v1beta1-rev20230918-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebase:v1beta1-rev20240913-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)