Skip to content

Commit 3ed9580

Browse files
1 parent c0b2c80 commit 3ed9580

File tree

10 files changed

+314
-36
lines changed

10 files changed

+314
-36
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-rev20250907-2.0.0</version>
25+
<version>v1-rev20250921-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-rev20250907-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20250921-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: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,19 @@ public final class GraphqlErrorExtensions extends com.google.api.client.json.Gen
5858
private java.lang.String file;
5959

6060
/**
61-
* Distinguish which schema or connector the error originates from. It should be set on errors
62-
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
61+
* Warning level describes the severity and required action to suppress this warning when Firebase
62+
* CLI run into it.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
66-
private java.lang.String resource;
66+
private java.lang.String warningLevel;
67+
68+
/**
69+
* Workarounds provide suggestions to address the compile errors or warnings.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.util.List<Workaround> workarounds;
6774

6875
/**
6976
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
@@ -129,21 +136,38 @@ public GraphqlErrorExtensions setFile(java.lang.String file) {
129136
}
130137

131138
/**
132-
* Distinguish which schema or connector the error originates from. It should be set on errors
133-
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
139+
* Warning level describes the severity and required action to suppress this warning when Firebase
140+
* CLI run into it.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.String getWarningLevel() {
144+
return warningLevel;
145+
}
146+
147+
/**
148+
* Warning level describes the severity and required action to suppress this warning when Firebase
149+
* CLI run into it.
150+
* @param warningLevel warningLevel or {@code null} for none
151+
*/
152+
public GraphqlErrorExtensions setWarningLevel(java.lang.String warningLevel) {
153+
this.warningLevel = warningLevel;
154+
return this;
155+
}
156+
157+
/**
158+
* Workarounds provide suggestions to address the compile errors or warnings.
134159
* @return value or {@code null} for none
135160
*/
136-
public java.lang.String getResource() {
137-
return resource;
161+
public java.util.List<Workaround> getWorkarounds() {
162+
return workarounds;
138163
}
139164

140165
/**
141-
* Distinguish which schema or connector the error originates from. It should be set on errors
142-
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
143-
* @param resource resource or {@code null} for none
166+
* Workarounds provide suggestions to address the compile errors or warnings.
167+
* @param workarounds workarounds or {@code null} for none
144168
*/
145-
public GraphqlErrorExtensions setResource(java.lang.String resource) {
146-
this.resource = resource;
169+
public GraphqlErrorExtensions setWorkarounds(java.util.List<Workaround> workarounds) {
170+
this.workarounds = workarounds;
147171
return this;
148172
}
149173

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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.firebasedataconnect.v1.model;
18+
19+
/**
20+
* Workaround provides suggestions to address errors and warnings.
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 Data Connect 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 Workaround extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Description of this workaround.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String description;
39+
40+
/**
41+
* Why would this workaround address the error and warning.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String reason;
46+
47+
/**
48+
* A suggested code snippet to fix the error and warning.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String replace;
53+
54+
/**
55+
* Description of this workaround.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getDescription() {
59+
return description;
60+
}
61+
62+
/**
63+
* Description of this workaround.
64+
* @param description description or {@code null} for none
65+
*/
66+
public Workaround setDescription(java.lang.String description) {
67+
this.description = description;
68+
return this;
69+
}
70+
71+
/**
72+
* Why would this workaround address the error and warning.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.String getReason() {
76+
return reason;
77+
}
78+
79+
/**
80+
* Why would this workaround address the error and warning.
81+
* @param reason reason or {@code null} for none
82+
*/
83+
public Workaround setReason(java.lang.String reason) {
84+
this.reason = reason;
85+
return this;
86+
}
87+
88+
/**
89+
* A suggested code snippet to fix the error and warning.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getReplace() {
93+
return replace;
94+
}
95+
96+
/**
97+
* A suggested code snippet to fix the error and warning.
98+
* @param replace replace or {@code null} for none
99+
*/
100+
public Workaround setReplace(java.lang.String replace) {
101+
this.replace = replace;
102+
return this;
103+
}
104+
105+
@Override
106+
public Workaround set(String fieldName, Object value) {
107+
return (Workaround) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public Workaround clone() {
112+
return (Workaround) super.clone();
113+
}
114+
115+
}

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-rev20250907-2.0.0</version>
12-
<name>Firebase Data Connect API v1-rev20250907-2.0.0</name>
11+
<version>v1-rev20250921-2.0.0</version>
12+
<name>Firebase Data Connect API v1-rev20250921-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-rev20250907-2.0.0</version>
25+
<version>v1-rev20250921-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-rev20250907-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20250921-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-rev20250907-2.0.0</version>
25+
<version>v1beta-rev20250921-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-rev20250907-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20250921-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: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,19 @@ public final class GraphqlErrorExtensions extends com.google.api.client.json.Gen
5858
private java.lang.String file;
5959

6060
/**
61-
* Distinguish which schema or connector the error originates from. It should be set on errors
62-
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
61+
* Warning level describes the severity and required action to suppress this warning when Firebase
62+
* CLI run into it.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
66-
private java.lang.String resource;
66+
private java.lang.String warningLevel;
67+
68+
/**
69+
* Workarounds provide suggestions to address the compile errors or warnings.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.util.List<Workaround> workarounds;
6774

6875
/**
6976
* Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
@@ -129,21 +136,38 @@ public GraphqlErrorExtensions setFile(java.lang.String file) {
129136
}
130137

131138
/**
132-
* Distinguish which schema or connector the error originates from. It should be set on errors
133-
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
139+
* Warning level describes the severity and required action to suppress this warning when Firebase
140+
* CLI run into it.
141+
* @return value or {@code null} for none
142+
*/
143+
public java.lang.String getWarningLevel() {
144+
return warningLevel;
145+
}
146+
147+
/**
148+
* Warning level describes the severity and required action to suppress this warning when Firebase
149+
* CLI run into it.
150+
* @param warningLevel warningLevel or {@code null} for none
151+
*/
152+
public GraphqlErrorExtensions setWarningLevel(java.lang.String warningLevel) {
153+
this.warningLevel = warningLevel;
154+
return this;
155+
}
156+
157+
/**
158+
* Workarounds provide suggestions to address the compile errors or warnings.
134159
* @return value or {@code null} for none
135160
*/
136-
public java.lang.String getResource() {
137-
return resource;
161+
public java.util.List<Workaround> getWorkarounds() {
162+
return workarounds;
138163
}
139164

140165
/**
141-
* Distinguish which schema or connector the error originates from. It should be set on errors
142-
* from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
143-
* @param resource resource or {@code null} for none
166+
* Workarounds provide suggestions to address the compile errors or warnings.
167+
* @param workarounds workarounds or {@code null} for none
144168
*/
145-
public GraphqlErrorExtensions setResource(java.lang.String resource) {
146-
this.resource = resource;
169+
public GraphqlErrorExtensions setWorkarounds(java.util.List<Workaround> workarounds) {
170+
this.workarounds = workarounds;
147171
return this;
148172
}
149173

0 commit comments

Comments
 (0)