Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebasedataconnect</artifactId>
<version>v1-rev20260719-2.0.0</version>
<version>v1-rev20260726-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20260719-2.0.0'
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20260726-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ public final class Service extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.String> annotations;

/**
* Output only. The list of connectors in this service.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<Connector> connectors;

static {
// hack to force ProGuard to consider Connector used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(Connector.class);
}

/**
* Output only. [Output only] Create time stamp.
* The value may be {@code null}.
Expand Down Expand Up @@ -84,6 +97,26 @@ public final class Service extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.Boolean reconciling;

/**
* Output only. The list of schemas in this service.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<Schema> schemas;

static {
// hack to force ProGuard to consider Schema used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(Schema.class);
}

/**
* Optional. Input only. The source files for service, schemas, and connectors.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Source source;

/**
* Output only. System-assigned, unique identifier.
* The value may be {@code null}.
Expand Down Expand Up @@ -115,6 +148,23 @@ public Service setAnnotations(java.util.Map<String, java.lang.String> annotation
return this;
}

/**
* Output only. The list of connectors in this service.
* @return value or {@code null} for none
*/
public java.util.List<Connector> getConnectors() {
return connectors;
}

/**
* Output only. The list of connectors in this service.
* @param connectors connectors or {@code null} for none
*/
public Service setConnectors(java.util.List<Connector> connectors) {
this.connectors = connectors;
return this;
}

/**
* Output only. [Output only] Create time stamp.
* @return value or {@code null} for none
Expand Down Expand Up @@ -227,6 +277,40 @@ public Service setReconciling(java.lang.Boolean reconciling) {
return this;
}

/**
* Output only. The list of schemas in this service.
* @return value or {@code null} for none
*/
public java.util.List<Schema> getSchemas() {
return schemas;
}

/**
* Output only. The list of schemas in this service.
* @param schemas schemas or {@code null} for none
*/
public Service setSchemas(java.util.List<Schema> schemas) {
this.schemas = schemas;
return this;
}

/**
* Optional. Input only. The source files for service, schemas, and connectors.
* @return value or {@code null} for none
*/
public Source getSource() {
return source;
}

/**
* Optional. Input only. The source files for service, schemas, and connectors.
* @param source source or {@code null} for none
*/
public Service setSource(Source source) {
this.source = source;
return this;
}

/**
* Output only. System-assigned, unique identifier.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebasedataconnect</artifactId>
<version>v1-rev20260719-2.0.0</version>
<name>Firebase SQL Connect API v1-rev20260719-2.0.0</name>
<version>v1-rev20260726-2.0.0</version>
<name>Firebase SQL Connect API v1-rev20260726-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebasedataconnect</artifactId>
<version>v1-rev20260719-2.0.0</version>
<version>v1-rev20260726-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20260719-2.0.0'
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1-rev20260726-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebasedataconnect</artifactId>
<version>v1beta-rev20260719-2.0.0</version>
<version>v1beta-rev20260726-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20260719-2.0.0'
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20260726-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ public final class Service extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.util.Map<String, java.lang.String> annotations;

/**
* Output only. The list of connectors in this service.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<Connector> connectors;

static {
// hack to force ProGuard to consider Connector used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(Connector.class);
}

/**
* Output only. [Output only] Create time stamp.
* The value may be {@code null}.
Expand Down Expand Up @@ -84,6 +97,26 @@ public final class Service extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.Boolean reconciling;

/**
* Output only. The list of schemas in this service.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<Schema> schemas;

static {
// hack to force ProGuard to consider Schema used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(Schema.class);
}

/**
* Optional. Input only. The source files for service, schemas, and connectors.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Source source;

/**
* Output only. System-assigned, unique identifier.
* The value may be {@code null}.
Expand Down Expand Up @@ -115,6 +148,23 @@ public Service setAnnotations(java.util.Map<String, java.lang.String> annotation
return this;
}

/**
* Output only. The list of connectors in this service.
* @return value or {@code null} for none
*/
public java.util.List<Connector> getConnectors() {
return connectors;
}

/**
* Output only. The list of connectors in this service.
* @param connectors connectors or {@code null} for none
*/
public Service setConnectors(java.util.List<Connector> connectors) {
this.connectors = connectors;
return this;
}

/**
* Output only. [Output only] Create time stamp.
* @return value or {@code null} for none
Expand Down Expand Up @@ -227,6 +277,40 @@ public Service setReconciling(java.lang.Boolean reconciling) {
return this;
}

/**
* Output only. The list of schemas in this service.
* @return value or {@code null} for none
*/
public java.util.List<Schema> getSchemas() {
return schemas;
}

/**
* Output only. The list of schemas in this service.
* @param schemas schemas or {@code null} for none
*/
public Service setSchemas(java.util.List<Schema> schemas) {
this.schemas = schemas;
return this;
}

/**
* Optional. Input only. The source files for service, schemas, and connectors.
* @return value or {@code null} for none
*/
public Source getSource() {
return source;
}

/**
* Optional. Input only. The source files for service, schemas, and connectors.
* @param source source or {@code null} for none
*/
public Service setSource(Source source) {
this.source = source;
return this;
}

/**
* Output only. System-assigned, unique identifier.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebasedataconnect</artifactId>
<version>v1beta-rev20260719-2.0.0</version>
<name>Firebase SQL Connect API v1beta-rev20260719-2.0.0</name>
<version>v1beta-rev20260726-2.0.0</version>
<name>Firebase SQL Connect API v1beta-rev20260726-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebasedataconnect</artifactId>
<version>v1beta-rev20260719-2.0.0</version>
<version>v1beta-rev20260726-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20260719-2.0.0'
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20260726-2.0.0'
}
```

Expand Down
Loading