Skip to content

Commit 88e8bfc

Browse files
chore: regenerate firebasedataconnect client (#27595)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent 40859d4 commit 88e8bfc

File tree

8 files changed

+168
-12
lines changed

8 files changed

+168
-12
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-rev20250323-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20250604-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: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,21 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GraphqlErrorExtensions extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String code;
39+
40+
/**
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.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String debugDetails;
47+
3348
/**
3449
* The source file name where the error occurred. Included only for `UpdateSchema` and
3550
* `UpdateConnector`, it corresponds to `File.path` of the provided `Source`.
@@ -38,6 +53,50 @@ public final class GraphqlErrorExtensions extends com.google.api.client.json.Gen
3853
@com.google.api.client.util.Key
3954
private java.lang.String file;
4055

56+
/**
57+
* Distinguish which schema or connector the error originates from. It should be set on errors
58+
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.String resource;
63+
64+
/**
65+
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getCode() {
69+
return code;
70+
}
71+
72+
/**
73+
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
74+
* @param code code or {@code null} for none
75+
*/
76+
public GraphqlErrorExtensions setCode(java.lang.String code) {
77+
this.code = code;
78+
return this;
79+
}
80+
81+
/**
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.
84+
* @return value or {@code null} for none
85+
*/
86+
public java.lang.String getDebugDetails() {
87+
return debugDetails;
88+
}
89+
90+
/**
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.
93+
* @param debugDetails debugDetails or {@code null} for none
94+
*/
95+
public GraphqlErrorExtensions setDebugDetails(java.lang.String debugDetails) {
96+
this.debugDetails = debugDetails;
97+
return this;
98+
}
99+
41100
/**
42101
* The source file name where the error occurred. Included only for `UpdateSchema` and
43102
* `UpdateConnector`, it corresponds to `File.path` of the provided `Source`.
@@ -57,6 +116,25 @@ public GraphqlErrorExtensions setFile(java.lang.String file) {
57116
return this;
58117
}
59118

119+
/**
120+
* Distinguish which schema or connector the error originates from. It should be set on errors
121+
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
122+
* @return value or {@code null} for none
123+
*/
124+
public java.lang.String getResource() {
125+
return resource;
126+
}
127+
128+
/**
129+
* Distinguish which schema or connector the error originates from. It should be set on errors
130+
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
131+
* @param resource resource or {@code null} for none
132+
*/
133+
public GraphqlErrorExtensions setResource(java.lang.String resource) {
134+
this.resource = resource;
135+
return this;
136+
}
137+
60138
@Override
61139
public GraphqlErrorExtensions set(String fieldName, Object value) {
62140
return (GraphqlErrorExtensions) 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-rev20250323-2.0.0</version>
12-
<name>Firebase Data Connect API v1-rev20250323-2.0.0</name>
11+
<version>v1-rev20250604-2.0.0</version>
12+
<name>Firebase Data Connect API v1-rev20250604-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-rev20250323-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20250604-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-rev20250323-2.0.0</version>
25+
<version>v1beta-rev20250604-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-rev20250323-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20250604-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: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,21 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GraphqlErrorExtensions extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String code;
39+
40+
/**
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.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String debugDetails;
47+
3348
/**
3449
* The source file name where the error occurred. Included only for `UpdateSchema` and
3550
* `UpdateConnector`, it corresponds to `File.path` of the provided `Source`.
@@ -38,6 +53,50 @@ public final class GraphqlErrorExtensions extends com.google.api.client.json.Gen
3853
@com.google.api.client.util.Key
3954
private java.lang.String file;
4055

56+
/**
57+
* Distinguish which schema or connector the error originates from. It should be set on errors
58+
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.String resource;
63+
64+
/**
65+
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getCode() {
69+
return code;
70+
}
71+
72+
/**
73+
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
74+
* @param code code or {@code null} for none
75+
*/
76+
public GraphqlErrorExtensions setCode(java.lang.String code) {
77+
this.code = code;
78+
return this;
79+
}
80+
81+
/**
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.
84+
* @return value or {@code null} for none
85+
*/
86+
public java.lang.String getDebugDetails() {
87+
return debugDetails;
88+
}
89+
90+
/**
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.
93+
* @param debugDetails debugDetails or {@code null} for none
94+
*/
95+
public GraphqlErrorExtensions setDebugDetails(java.lang.String debugDetails) {
96+
this.debugDetails = debugDetails;
97+
return this;
98+
}
99+
41100
/**
42101
* The source file name where the error occurred. Included only for `UpdateSchema` and
43102
* `UpdateConnector`, it corresponds to `File.path` of the provided `Source`.
@@ -57,6 +116,25 @@ public GraphqlErrorExtensions setFile(java.lang.String file) {
57116
return this;
58117
}
59118

119+
/**
120+
* Distinguish which schema or connector the error originates from. It should be set on errors
121+
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
122+
* @return value or {@code null} for none
123+
*/
124+
public java.lang.String getResource() {
125+
return resource;
126+
}
127+
128+
/**
129+
* Distinguish which schema or connector the error originates from. It should be set on errors
130+
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
131+
* @param resource resource or {@code null} for none
132+
*/
133+
public GraphqlErrorExtensions setResource(java.lang.String resource) {
134+
this.resource = resource;
135+
return this;
136+
}
137+
60138
@Override
61139
public GraphqlErrorExtensions set(String fieldName, Object value) {
62140
return (GraphqlErrorExtensions) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)