Skip to content

Commit c3a887e

Browse files
1 parent d062730 commit c3a887e

File tree

10 files changed

+96
-24
lines changed

10 files changed

+96
-24
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-rev20250604-2.0.0</version>
25+
<version>v1-rev20250706-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-rev20250604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20250706-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ public final class GraphqlErrorExtensions extends com.google.api.client.json.Gen
3838
private java.lang.String code;
3939

4040
/**
41-
* More detailed error message to assist debugging. In the backend, only include it in admin
42-
* authenticated API like ExecuteGraphql. In the emulator, always include it to assist debugging.
41+
* More detailed error message to assist debugging. It contains application business logic that
42+
* are inappropriate to leak publicly. In the emulator, Data Connect API always includes it to
43+
* assist local development and debugging. In the backend, ConnectorService always hides it.
44+
* GraphqlService without impersonation always include it. GraphqlService with impersonation
45+
* includes it only if explicitly opted-in with `include_debug_details` in
46+
* `GraphqlRequestExtensions`.
4347
* The value may be {@code null}.
4448
*/
4549
@com.google.api.client.util.Key
@@ -79,17 +83,25 @@ public GraphqlErrorExtensions setCode(java.lang.String code) {
7983
}
8084

8185
/**
82-
* More detailed error message to assist debugging. In the backend, only include it in admin
83-
* authenticated API like ExecuteGraphql. In the emulator, always include it to assist debugging.
86+
* More detailed error message to assist debugging. It contains application business logic that
87+
* are inappropriate to leak publicly. In the emulator, Data Connect API always includes it to
88+
* assist local development and debugging. In the backend, ConnectorService always hides it.
89+
* GraphqlService without impersonation always include it. GraphqlService with impersonation
90+
* includes it only if explicitly opted-in with `include_debug_details` in
91+
* `GraphqlRequestExtensions`.
8492
* @return value or {@code null} for none
8593
*/
8694
public java.lang.String getDebugDetails() {
8795
return debugDetails;
8896
}
8997

9098
/**
91-
* More detailed error message to assist debugging. In the backend, only include it in admin
92-
* authenticated API like ExecuteGraphql. In the emulator, always include it to assist debugging.
99+
* More detailed error message to assist debugging. It contains application business logic that
100+
* are inappropriate to leak publicly. In the emulator, Data Connect API always includes it to
101+
* assist local development and debugging. In the backend, ConnectorService always hides it.
102+
* GraphqlService without impersonation always include it. GraphqlService with impersonation
103+
* includes it only if explicitly opted-in with `include_debug_details` in
104+
* `GraphqlRequestExtensions`.
93105
* @param debugDetails debugDetails or {@code null} for none
94106
*/
95107
public GraphqlErrorExtensions setDebugDetails(java.lang.String debugDetails) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ public final class Impersonation extends com.google.api.client.json.GenericJson
3939
@com.google.api.client.util.Key
4040
private java.util.Map<String, java.lang.Object> authClaims;
4141

42+
/**
43+
* Optional. If set, include debug details in GraphQL error extensions.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.Boolean includeDebugDetails;
48+
4249
/**
4350
* Evaluate the auth policy as an unauthenticated request. Can only be set to true.
4451
* The value may be {@code null}.
@@ -67,6 +74,23 @@ public Impersonation setAuthClaims(java.util.Map<String, java.lang.Object> authC
6774
return this;
6875
}
6976

77+
/**
78+
* Optional. If set, include debug details in GraphQL error extensions.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.Boolean getIncludeDebugDetails() {
82+
return includeDebugDetails;
83+
}
84+
85+
/**
86+
* Optional. If set, include debug details in GraphQL error extensions.
87+
* @param includeDebugDetails includeDebugDetails or {@code null} for none
88+
*/
89+
public Impersonation setIncludeDebugDetails(java.lang.Boolean includeDebugDetails) {
90+
this.includeDebugDetails = includeDebugDetails;
91+
return this;
92+
}
93+
7094
/**
7195
* Evaluate the auth policy as an unauthenticated request. Can only be set to true.
7296
* @return value or {@code null} for none

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-rev20250604-2.0.0</version>
12-
<name>Firebase Data Connect API v1-rev20250604-2.0.0</name>
11+
<version>v1-rev20250706-2.0.0</version>
12+
<name>Firebase Data Connect API v1-rev20250706-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-rev20250604-2.0.0</version>
25+
<version>v1-rev20250706-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-rev20250604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20250706-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-rev20250604-2.0.0</version>
25+
<version>v1beta-rev20250706-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-rev20250604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20250706-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ public final class GraphqlErrorExtensions extends com.google.api.client.json.Gen
3838
private java.lang.String code;
3939

4040
/**
41-
* More detailed error message to assist debugging. In the backend, only include it in admin
42-
* authenticated API like ExecuteGraphql. In the emulator, always include it to assist debugging.
41+
* More detailed error message to assist debugging. It contains application business logic that
42+
* are inappropriate to leak publicly. In the emulator, Data Connect API always includes it to
43+
* assist local development and debugging. In the backend, ConnectorService always hides it.
44+
* GraphqlService without impersonation always include it. GraphqlService with impersonation
45+
* includes it only if explicitly opted-in with `include_debug_details` in
46+
* `GraphqlRequestExtensions`.
4347
* The value may be {@code null}.
4448
*/
4549
@com.google.api.client.util.Key
@@ -79,17 +83,25 @@ public GraphqlErrorExtensions setCode(java.lang.String code) {
7983
}
8084

8185
/**
82-
* More detailed error message to assist debugging. In the backend, only include it in admin
83-
* authenticated API like ExecuteGraphql. In the emulator, always include it to assist debugging.
86+
* More detailed error message to assist debugging. It contains application business logic that
87+
* are inappropriate to leak publicly. In the emulator, Data Connect API always includes it to
88+
* assist local development and debugging. In the backend, ConnectorService always hides it.
89+
* GraphqlService without impersonation always include it. GraphqlService with impersonation
90+
* includes it only if explicitly opted-in with `include_debug_details` in
91+
* `GraphqlRequestExtensions`.
8492
* @return value or {@code null} for none
8593
*/
8694
public java.lang.String getDebugDetails() {
8795
return debugDetails;
8896
}
8997

9098
/**
91-
* More detailed error message to assist debugging. In the backend, only include it in admin
92-
* authenticated API like ExecuteGraphql. In the emulator, always include it to assist debugging.
99+
* More detailed error message to assist debugging. It contains application business logic that
100+
* are inappropriate to leak publicly. In the emulator, Data Connect API always includes it to
101+
* assist local development and debugging. In the backend, ConnectorService always hides it.
102+
* GraphqlService without impersonation always include it. GraphqlService with impersonation
103+
* includes it only if explicitly opted-in with `include_debug_details` in
104+
* `GraphqlRequestExtensions`.
93105
* @param debugDetails debugDetails or {@code null} for none
94106
*/
95107
public GraphqlErrorExtensions setDebugDetails(java.lang.String debugDetails) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ public final class Impersonation extends com.google.api.client.json.GenericJson
3939
@com.google.api.client.util.Key
4040
private java.util.Map<String, java.lang.Object> authClaims;
4141

42+
/**
43+
* Optional. If set, include debug details in GraphQL error extensions.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.Boolean includeDebugDetails;
48+
4249
/**
4350
* Evaluate the auth policy as an unauthenticated request. Can only be set to true.
4451
* The value may be {@code null}.
@@ -67,6 +74,23 @@ public Impersonation setAuthClaims(java.util.Map<String, java.lang.Object> authC
6774
return this;
6875
}
6976

77+
/**
78+
* Optional. If set, include debug details in GraphQL error extensions.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.Boolean getIncludeDebugDetails() {
82+
return includeDebugDetails;
83+
}
84+
85+
/**
86+
* Optional. If set, include debug details in GraphQL error extensions.
87+
* @param includeDebugDetails includeDebugDetails or {@code null} for none
88+
*/
89+
public Impersonation setIncludeDebugDetails(java.lang.Boolean includeDebugDetails) {
90+
this.includeDebugDetails = includeDebugDetails;
91+
return this;
92+
}
93+
7094
/**
7195
* Evaluate the auth policy as an unauthenticated request. Can only be set to true.
7296
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)