Skip to content

Commit

Permalink
chore: regenerate connectors client (#23529)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Sep 29, 2024
1 parent af9c28f commit 6f49b18
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 6 deletions.
4 changes: 2 additions & 2 deletions clients/google-api-services-connectors/v1/2.0.0/README.md
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-connectors</artifactId>
<version>v1-rev20240918-2.0.0</version>
<version>v1-rev20240924-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-connectors:v1-rev20240918-2.0.0'
implementation 'com.google.apis:google-api-services-connectors:v1-rev20240924-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class ConnectorInfraConfig extends com.google.api.client.json.GenericJson {

/**
* Indicates that the Cloud Run CPU should always be allocated.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean alwaysAllocateCpu;

/**
* The window used for ratelimiting runtime requests to connections.
* The value may be {@code null}.
Expand Down Expand Up @@ -79,6 +86,13 @@ public final class ConnectorInfraConfig extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private java.lang.Boolean migrateTls;

/**
* Indicate whether cloud spanner is required for connector job.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean provisionCloudSpanner;

/**
* Max QPS supported by the connector version before throttling of requests.
* The value may be {@code null}.
Expand Down Expand Up @@ -107,6 +121,23 @@ public final class ConnectorInfraConfig extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private java.lang.String sharedDeployment;

/**
* Indicates that the Cloud Run CPU should always be allocated.
* @return value or {@code null} for none
*/
public java.lang.Boolean getAlwaysAllocateCpu() {
return alwaysAllocateCpu;
}

/**
* Indicates that the Cloud Run CPU should always be allocated.
* @param alwaysAllocateCpu alwaysAllocateCpu or {@code null} for none
*/
public ConnectorInfraConfig setAlwaysAllocateCpu(java.lang.Boolean alwaysAllocateCpu) {
this.alwaysAllocateCpu = alwaysAllocateCpu;
return this;
}

/**
* The window used for ratelimiting runtime requests to connections.
* @return value or {@code null} for none
Expand Down Expand Up @@ -226,6 +257,23 @@ public ConnectorInfraConfig setMigrateTls(java.lang.Boolean migrateTls) {
return this;
}

/**
* Indicate whether cloud spanner is required for connector job.
* @return value or {@code null} for none
*/
public java.lang.Boolean getProvisionCloudSpanner() {
return provisionCloudSpanner;
}

/**
* Indicate whether cloud spanner is required for connector job.
* @param provisionCloudSpanner provisionCloudSpanner or {@code null} for none
*/
public ConnectorInfraConfig setProvisionCloudSpanner(java.lang.Boolean provisionCloudSpanner) {
this.provisionCloudSpanner = provisionCloudSpanner;
return this;
}

/**
* Max QPS supported by the connector version before throttling of requests.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-connectors/v1/2.0.0/pom.xml
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-connectors</artifactId>
<version>v1-rev20240918-2.0.0</version>
<name>Connectors API v1-rev20240918-2.0.0</name>
<version>v1-rev20240924-2.0.0</version>
<name>Connectors API v1-rev20240924-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-connectors/v1/README.md
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-connectors</artifactId>
<version>v1-rev20240918-2.0.0</version>
<version>v1-rev20240924-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-connectors:v1-rev20240918-2.0.0'
implementation 'com.google.apis:google-api-services-connectors:v1-rev20240924-2.0.0'
}
```

Expand Down

0 comments on commit 6f49b18

Please sign in to comment.