Skip to content

Commit d691b67

Browse files
1 parent 462244d commit d691b67

8 files changed

Lines changed: 180 additions & 12 deletions

File tree

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

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

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,19 @@ public final class Service extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.util.Map<String, java.lang.String> annotations;
3939

40+
/**
41+
* Output only. The list of connectors in this service.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<Connector> connectors;
46+
47+
static {
48+
// hack to force ProGuard to consider Connector used, since otherwise it would be stripped out
49+
// see https://github.com/google/google-api-java-client/issues/543
50+
com.google.api.client.util.Data.nullOf(Connector.class);
51+
}
52+
4053
/**
4154
* Output only. [Output only] Create time stamp.
4255
* The value may be {@code null}.
@@ -84,6 +97,26 @@ public final class Service extends com.google.api.client.json.GenericJson {
8497
@com.google.api.client.util.Key
8598
private java.lang.Boolean reconciling;
8699

100+
/**
101+
* Output only. The list of schemas in this service.
102+
* The value may be {@code null}.
103+
*/
104+
@com.google.api.client.util.Key
105+
private java.util.List<Schema> schemas;
106+
107+
static {
108+
// hack to force ProGuard to consider Schema used, since otherwise it would be stripped out
109+
// see https://github.com/google/google-api-java-client/issues/543
110+
com.google.api.client.util.Data.nullOf(Schema.class);
111+
}
112+
113+
/**
114+
* Optional. Input only. The source files for service, schemas, and connectors.
115+
* The value may be {@code null}.
116+
*/
117+
@com.google.api.client.util.Key
118+
private Source source;
119+
87120
/**
88121
* Output only. System-assigned, unique identifier.
89122
* The value may be {@code null}.
@@ -115,6 +148,23 @@ public Service setAnnotations(java.util.Map<String, java.lang.String> annotation
115148
return this;
116149
}
117150

151+
/**
152+
* Output only. The list of connectors in this service.
153+
* @return value or {@code null} for none
154+
*/
155+
public java.util.List<Connector> getConnectors() {
156+
return connectors;
157+
}
158+
159+
/**
160+
* Output only. The list of connectors in this service.
161+
* @param connectors connectors or {@code null} for none
162+
*/
163+
public Service setConnectors(java.util.List<Connector> connectors) {
164+
this.connectors = connectors;
165+
return this;
166+
}
167+
118168
/**
119169
* Output only. [Output only] Create time stamp.
120170
* @return value or {@code null} for none
@@ -227,6 +277,40 @@ public Service setReconciling(java.lang.Boolean reconciling) {
227277
return this;
228278
}
229279

280+
/**
281+
* Output only. The list of schemas in this service.
282+
* @return value or {@code null} for none
283+
*/
284+
public java.util.List<Schema> getSchemas() {
285+
return schemas;
286+
}
287+
288+
/**
289+
* Output only. The list of schemas in this service.
290+
* @param schemas schemas or {@code null} for none
291+
*/
292+
public Service setSchemas(java.util.List<Schema> schemas) {
293+
this.schemas = schemas;
294+
return this;
295+
}
296+
297+
/**
298+
* Optional. Input only. The source files for service, schemas, and connectors.
299+
* @return value or {@code null} for none
300+
*/
301+
public Source getSource() {
302+
return source;
303+
}
304+
305+
/**
306+
* Optional. Input only. The source files for service, schemas, and connectors.
307+
* @param source source or {@code null} for none
308+
*/
309+
public Service setSource(Source source) {
310+
this.source = source;
311+
return this;
312+
}
313+
230314
/**
231315
* Output only. System-assigned, unique identifier.
232316
* @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-rev20260719-2.0.0</version>
12-
<name>Firebase SQL Connect API v1-rev20260719-2.0.0</name>
11+
<version>v1-rev20260726-2.0.0</version>
12+
<name>Firebase SQL Connect API v1-rev20260726-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-rev20260719-2.0.0</version>
25+
<version>v1-rev20260726-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-rev20260719-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20260726-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-rev20260719-2.0.0</version>
25+
<version>v1beta-rev20260726-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-rev20260719-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20260726-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,19 @@ public final class Service extends com.google.api.client.json.GenericJson {
3737
@com.google.api.client.util.Key
3838
private java.util.Map<String, java.lang.String> annotations;
3939

40+
/**
41+
* Output only. The list of connectors in this service.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<Connector> connectors;
46+
47+
static {
48+
// hack to force ProGuard to consider Connector used, since otherwise it would be stripped out
49+
// see https://github.com/google/google-api-java-client/issues/543
50+
com.google.api.client.util.Data.nullOf(Connector.class);
51+
}
52+
4053
/**
4154
* Output only. [Output only] Create time stamp.
4255
* The value may be {@code null}.
@@ -84,6 +97,26 @@ public final class Service extends com.google.api.client.json.GenericJson {
8497
@com.google.api.client.util.Key
8598
private java.lang.Boolean reconciling;
8699

100+
/**
101+
* Output only. The list of schemas in this service.
102+
* The value may be {@code null}.
103+
*/
104+
@com.google.api.client.util.Key
105+
private java.util.List<Schema> schemas;
106+
107+
static {
108+
// hack to force ProGuard to consider Schema used, since otherwise it would be stripped out
109+
// see https://github.com/google/google-api-java-client/issues/543
110+
com.google.api.client.util.Data.nullOf(Schema.class);
111+
}
112+
113+
/**
114+
* Optional. Input only. The source files for service, schemas, and connectors.
115+
* The value may be {@code null}.
116+
*/
117+
@com.google.api.client.util.Key
118+
private Source source;
119+
87120
/**
88121
* Output only. System-assigned, unique identifier.
89122
* The value may be {@code null}.
@@ -115,6 +148,23 @@ public Service setAnnotations(java.util.Map<String, java.lang.String> annotation
115148
return this;
116149
}
117150

151+
/**
152+
* Output only. The list of connectors in this service.
153+
* @return value or {@code null} for none
154+
*/
155+
public java.util.List<Connector> getConnectors() {
156+
return connectors;
157+
}
158+
159+
/**
160+
* Output only. The list of connectors in this service.
161+
* @param connectors connectors or {@code null} for none
162+
*/
163+
public Service setConnectors(java.util.List<Connector> connectors) {
164+
this.connectors = connectors;
165+
return this;
166+
}
167+
118168
/**
119169
* Output only. [Output only] Create time stamp.
120170
* @return value or {@code null} for none
@@ -227,6 +277,40 @@ public Service setReconciling(java.lang.Boolean reconciling) {
227277
return this;
228278
}
229279

280+
/**
281+
* Output only. The list of schemas in this service.
282+
* @return value or {@code null} for none
283+
*/
284+
public java.util.List<Schema> getSchemas() {
285+
return schemas;
286+
}
287+
288+
/**
289+
* Output only. The list of schemas in this service.
290+
* @param schemas schemas or {@code null} for none
291+
*/
292+
public Service setSchemas(java.util.List<Schema> schemas) {
293+
this.schemas = schemas;
294+
return this;
295+
}
296+
297+
/**
298+
* Optional. Input only. The source files for service, schemas, and connectors.
299+
* @return value or {@code null} for none
300+
*/
301+
public Source getSource() {
302+
return source;
303+
}
304+
305+
/**
306+
* Optional. Input only. The source files for service, schemas, and connectors.
307+
* @param source source or {@code null} for none
308+
*/
309+
public Service setSource(Source source) {
310+
this.source = source;
311+
return this;
312+
}
313+
230314
/**
231315
* Output only. System-assigned, unique identifier.
232316
* @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-rev20260719-2.0.0</version>
12-
<name>Firebase SQL Connect API v1beta-rev20260719-2.0.0</name>
11+
<version>v1beta-rev20260726-2.0.0</version>
12+
<name>Firebase SQL Connect API v1beta-rev20260726-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-rev20260719-2.0.0</version>
25+
<version>v1beta-rev20260726-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-rev20260719-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20260726-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)