Skip to content

Commit 4bddaa7

Browse files
1 parent ba35e11 commit 4bddaa7

File tree

12 files changed

+186
-50
lines changed

12 files changed

+186
-50
lines changed

clients/google-api-services-firebasedataconnect/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-firebasedataconnect</artifactId>
25-
<version>v1-rev20250921-2.0.0</version>
25+
<version>v1-rev20251021-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-firebasedataconnect:v1-rev20250921-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20251021-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebasedataconnect/v1/2.0.0/com/google/api/services/firebasedataconnect/v1/FirebaseDataConnect.java

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

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

463463
/**
464-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
465-
* is primarily intended for internal usage.
464+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
465+
* documented otherwise. This is primarily for internal usage.
466466
*/
467467
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
468468
this.extraLocationTypes = extraLocationTypes;
@@ -1160,6 +1160,40 @@ public List setPageToken(java.lang.String pageToken) {
11601160
return this;
11611161
}
11621162

1163+
/**
1164+
* When set to `true`, operations that are reachable are returned as normal, and those
1165+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
1166+
* This can only be `true` when reading across collections e.g. when `parent` is set to
1167+
* `"projects/example/locations/-"`. This field is not by default supported and will
1168+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
1169+
* service or product specific documentation.
1170+
*/
1171+
@com.google.api.client.util.Key
1172+
private java.lang.Boolean returnPartialSuccess;
1173+
1174+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
1175+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
1176+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
1177+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
1178+
explicitly documented otherwise in service or product specific documentation.
1179+
*/
1180+
public java.lang.Boolean getReturnPartialSuccess() {
1181+
return returnPartialSuccess;
1182+
}
1183+
1184+
/**
1185+
* When set to `true`, operations that are reachable are returned as normal, and those
1186+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
1187+
* This can only be `true` when reading across collections e.g. when `parent` is set to
1188+
* `"projects/example/locations/-"`. This field is not by default supported and will
1189+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
1190+
* service or product specific documentation.
1191+
*/
1192+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1193+
this.returnPartialSuccess = returnPartialSuccess;
1194+
return this;
1195+
}
1196+
11631197
@Override
11641198
public List set(String parameterName, Object value) {
11651199
return (List) super.set(parameterName, value);

clients/google-api-services-firebasedataconnect/v1/2.0.0/com/google/api/services/firebasedataconnect/v1/model/GraphqlError.java

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
* GraphqlError conforms to the GraphQL error spec. https://spec.graphql.org/draft/#sec-Errors
2121
* Firebase Data Connect API surfaces `GraphqlError` in various APIs: - Upon compile error,
2222
* `UpdateSchema` and `UpdateConnector` return Code.Invalid_Argument with a list of `GraphqlError`
23-
* in error details. - Upon query compile error, `ExecuteGraphql` and `ExecuteGraphqlRead` return
24-
* Code.OK with a list of `GraphqlError` in response body. - Upon query execution error,
25-
* `ExecuteGraphql`, `ExecuteGraphqlRead`, `ExecuteMutation` and `ExecuteQuery` all return Code.OK
26-
* with a list of `GraphqlError` in response body.
23+
* in error details. - Upon query compile error, `ExecuteGraphql`, `ExecuteGraphqlRead` and
24+
* `IntrospectGraphql` return Code.OK with a list of `GraphqlError` in response body. - Upon query
25+
* execution error, `ExecuteGraphql`, `ExecuteGraphqlRead`, `ExecuteMutation`, `ExecuteQuery`,
26+
* `IntrospectGraphql`, `ImpersonateQuery` and `ImpersonateMutation` all return Code.OK with a list
27+
* of `GraphqlError` in response body.
2728
*
2829
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2930
* transmitted over HTTP when working with the Firebase Data Connect API. For a detailed explanation
@@ -46,9 +47,10 @@ public final class GraphqlError extends com.google.api.client.json.GenericJson {
4647
/**
4748
* The source locations where the error occurred. Locations should help developers and toolings
4849
* identify the source of error quickly. Included in admin endpoints (`ExecuteGraphql`,
49-
* `ExecuteGraphqlRead`, `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL
50-
* GQL document. Omitted in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have
51-
* access access the underlying GQL source.
50+
* `ExecuteGraphqlRead`, `IntrospectGraphql`, `ImpersonateQuery`, `ImpersonateMutation`,
51+
* `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL GQL document. Omitted
52+
* in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have access access the
53+
* underlying GQL source.
5254
* The value may be {@code null}.
5355
*/
5456
@com.google.api.client.util.Key
@@ -91,9 +93,10 @@ public GraphqlError setExtensions(GraphqlErrorExtensions extensions) {
9193
/**
9294
* The source locations where the error occurred. Locations should help developers and toolings
9395
* identify the source of error quickly. Included in admin endpoints (`ExecuteGraphql`,
94-
* `ExecuteGraphqlRead`, `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL
95-
* GQL document. Omitted in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have
96-
* access access the underlying GQL source.
96+
* `ExecuteGraphqlRead`, `IntrospectGraphql`, `ImpersonateQuery`, `ImpersonateMutation`,
97+
* `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL GQL document. Omitted
98+
* in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have access access the
99+
* underlying GQL source.
97100
* @return value or {@code null} for none
98101
*/
99102
public java.util.List<SourceLocation> getLocations() {
@@ -103,9 +106,10 @@ public java.util.List<SourceLocation> getLocations() {
103106
/**
104107
* The source locations where the error occurred. Locations should help developers and toolings
105108
* identify the source of error quickly. Included in admin endpoints (`ExecuteGraphql`,
106-
* `ExecuteGraphqlRead`, `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL
107-
* GQL document. Omitted in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have
108-
* access access the underlying GQL source.
109+
* `ExecuteGraphqlRead`, `IntrospectGraphql`, `ImpersonateQuery`, `ImpersonateMutation`,
110+
* `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL GQL document. Omitted
111+
* in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have access access the
112+
* underlying GQL source.
109113
* @param locations locations or {@code null} for none
110114
*/
111115
public GraphqlError setLocations(java.util.List<SourceLocation> locations) {

clients/google-api-services-firebasedataconnect/v1/2.0.0/com/google/api/services/firebasedataconnect/v1/model/ListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4444
@com.google.api.client.util.Key
4545
private java.util.List<Operation> operations;
4646

47+
/**
48+
* Unordered list. Unreachable resources. Populated when the request sets
49+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
50+
* attempting to list all resources across all supported locations.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> unreachable;
55+
4756
/**
4857
* The standard List next-page token.
4958
* @return value or {@code null} for none
@@ -78,6 +87,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7887
return this;
7988
}
8089

90+
/**
91+
* Unordered list. Unreachable resources. Populated when the request sets
92+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
93+
* attempting to list all resources across all supported locations.
94+
* @return value or {@code null} for none
95+
*/
96+
public java.util.List<java.lang.String> getUnreachable() {
97+
return unreachable;
98+
}
99+
100+
/**
101+
* Unordered list. Unreachable resources. Populated when the request sets
102+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
103+
* attempting to list all resources across all supported locations.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
81111
@Override
82112
public ListOperationsResponse set(String fieldName, Object value) {
83113
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-firebasedataconnect/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-firebasedataconnect</artifactId>
11-
<version>v1-rev20250921-2.0.0</version>
12-
<name>Firebase Data Connect API v1-rev20250921-2.0.0</name>
11+
<version>v1-rev20251021-2.0.0</version>
12+
<name>Firebase Data Connect API v1-rev20251021-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebasedataconnect/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-firebasedataconnect</artifactId>
25-
<version>v1-rev20250921-2.0.0</version>
25+
<version>v1-rev20251021-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-firebasedataconnect:v1-rev20250921-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20251021-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebasedataconnect/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-firebasedataconnect</artifactId>
25-
<version>v1beta-rev20250921-2.0.0</version>
25+
<version>v1beta-rev20251021-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-firebasedataconnect:v1beta-rev20250921-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20251021-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebasedataconnect/v1beta/2.0.0/com/google/api/services/firebasedataconnect/v1beta/FirebaseDataConnect.java

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

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

463463
/**
464-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
465-
* is primarily intended for internal usage.
464+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
465+
* documented otherwise. This is primarily for internal usage.
466466
*/
467467
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
468468
this.extraLocationTypes = extraLocationTypes;
@@ -1160,6 +1160,40 @@ public List setPageToken(java.lang.String pageToken) {
11601160
return this;
11611161
}
11621162

1163+
/**
1164+
* When set to `true`, operations that are reachable are returned as normal, and those
1165+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
1166+
* This can only be `true` when reading across collections e.g. when `parent` is set to
1167+
* `"projects/example/locations/-"`. This field is not by default supported and will
1168+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
1169+
* service or product specific documentation.
1170+
*/
1171+
@com.google.api.client.util.Key
1172+
private java.lang.Boolean returnPartialSuccess;
1173+
1174+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
1175+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
1176+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
1177+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
1178+
explicitly documented otherwise in service or product specific documentation.
1179+
*/
1180+
public java.lang.Boolean getReturnPartialSuccess() {
1181+
return returnPartialSuccess;
1182+
}
1183+
1184+
/**
1185+
* When set to `true`, operations that are reachable are returned as normal, and those
1186+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
1187+
* This can only be `true` when reading across collections e.g. when `parent` is set to
1188+
* `"projects/example/locations/-"`. This field is not by default supported and will
1189+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
1190+
* service or product specific documentation.
1191+
*/
1192+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1193+
this.returnPartialSuccess = returnPartialSuccess;
1194+
return this;
1195+
}
1196+
11631197
@Override
11641198
public List set(String parameterName, Object value) {
11651199
return (List) super.set(parameterName, value);

clients/google-api-services-firebasedataconnect/v1beta/2.0.0/com/google/api/services/firebasedataconnect/v1beta/model/GraphqlError.java

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
* GraphqlError conforms to the GraphQL error spec. https://spec.graphql.org/draft/#sec-Errors
2121
* Firebase Data Connect API surfaces `GraphqlError` in various APIs: - Upon compile error,
2222
* `UpdateSchema` and `UpdateConnector` return Code.Invalid_Argument with a list of `GraphqlError`
23-
* in error details. - Upon query compile error, `ExecuteGraphql` and `ExecuteGraphqlRead` return
24-
* Code.OK with a list of `GraphqlError` in response body. - Upon query execution error,
25-
* `ExecuteGraphql`, `ExecuteGraphqlRead`, `ExecuteMutation` and `ExecuteQuery` all return Code.OK
26-
* with a list of `GraphqlError` in response body.
23+
* in error details. - Upon query compile error, `ExecuteGraphql`, `ExecuteGraphqlRead` and
24+
* `IntrospectGraphql` return Code.OK with a list of `GraphqlError` in response body. - Upon query
25+
* execution error, `ExecuteGraphql`, `ExecuteGraphqlRead`, `ExecuteMutation`, `ExecuteQuery`,
26+
* `IntrospectGraphql`, `ImpersonateQuery` and `ImpersonateMutation` all return Code.OK with a list
27+
* of `GraphqlError` in response body.
2728
*
2829
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2930
* transmitted over HTTP when working with the Firebase Data Connect API. For a detailed explanation
@@ -46,9 +47,10 @@ public final class GraphqlError extends com.google.api.client.json.GenericJson {
4647
/**
4748
* The source locations where the error occurred. Locations should help developers and toolings
4849
* identify the source of error quickly. Included in admin endpoints (`ExecuteGraphql`,
49-
* `ExecuteGraphqlRead`, `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL
50-
* GQL document. Omitted in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have
51-
* access access the underlying GQL source.
50+
* `ExecuteGraphqlRead`, `IntrospectGraphql`, `ImpersonateQuery`, `ImpersonateMutation`,
51+
* `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL GQL document. Omitted
52+
* in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have access access the
53+
* underlying GQL source.
5254
* The value may be {@code null}.
5355
*/
5456
@com.google.api.client.util.Key
@@ -91,9 +93,10 @@ public GraphqlError setExtensions(GraphqlErrorExtensions extensions) {
9193
/**
9294
* The source locations where the error occurred. Locations should help developers and toolings
9395
* identify the source of error quickly. Included in admin endpoints (`ExecuteGraphql`,
94-
* `ExecuteGraphqlRead`, `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL
95-
* GQL document. Omitted in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have
96-
* access access the underlying GQL source.
96+
* `ExecuteGraphqlRead`, `IntrospectGraphql`, `ImpersonateQuery`, `ImpersonateMutation`,
97+
* `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL GQL document. Omitted
98+
* in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have access access the
99+
* underlying GQL source.
97100
* @return value or {@code null} for none
98101
*/
99102
public java.util.List<SourceLocation> getLocations() {
@@ -103,9 +106,10 @@ public java.util.List<SourceLocation> getLocations() {
103106
/**
104107
* The source locations where the error occurred. Locations should help developers and toolings
105108
* identify the source of error quickly. Included in admin endpoints (`ExecuteGraphql`,
106-
* `ExecuteGraphqlRead`, `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL
107-
* GQL document. Omitted in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have
108-
* access access the underlying GQL source.
109+
* `ExecuteGraphqlRead`, `IntrospectGraphql`, `ImpersonateQuery`, `ImpersonateMutation`,
110+
* `UpdateSchema` and `UpdateConnector`) to reference the provided GraphQL GQL document. Omitted
111+
* in `ExecuteMutation` and `ExecuteQuery` since the caller shouldn't have access access the
112+
* underlying GQL source.
109113
* @param locations locations or {@code null} for none
110114
*/
111115
public GraphqlError setLocations(java.util.List<SourceLocation> locations) {

0 commit comments

Comments
 (0)