Skip to content

Commit

Permalink
chore: regenerate redis client (#24972)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Jan 18, 2025
1 parent dc7938c commit 3ce2ec1
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 9 deletions.
4 changes: 2 additions & 2 deletions clients/google-api-services-redis/v1beta1/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-redis</artifactId>
<version>v1beta1-rev20250104-2.0.0</version>
<version>v1beta1-rev20250115-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20250104-2.0.0'
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20250115-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2761,14 +2761,14 @@ public Patch setRequestId(java.lang.String requestId) {
/**
* Required. Mask of fields to update. At least one path must be supplied in this field.
* The elements of the repeated paths field may only include these fields from Cluster: *
* `size_gb` * `replica_count`
* `size_gb` * `replica_count` * `cluster_endpoints`
*/
@com.google.api.client.util.Key
private String updateMask;

/** Required. Mask of fields to update. At least one path must be supplied in this field. The elements
of the repeated paths field may only include these fields from Cluster: * `size_gb` *
`replica_count`
`replica_count` * `cluster_endpoints`
*/
public String getUpdateMask() {
return updateMask;
Expand All @@ -2777,7 +2777,7 @@ public String getUpdateMask() {
/**
* Required. Mask of fields to update. At least one path must be supplied in this field.
* The elements of the repeated paths field may only include these fields from Cluster: *
* `size_gb` * `replica_count`
* `size_gb` * `replica_count` * `cluster_endpoints`
*/
public Patch setUpdateMask(String updateMask) {
this.updateMask = updateMask;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@
@SuppressWarnings("javadoc")
public final class Cluster extends com.google.api.client.json.GenericJson {

/**
* Optional. If true, cluster endpoints that are created and registered by customers can be
* deleted asynchronously. That is, such a cluster endpoint can be de-registered before the
* forwarding rules in the cluster endpoint are deleted.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean asyncClusterEndpointsDeletionEnabled;

/**
* Optional. The authorization mode of the Redis cluster. If not provided, auth feature is
* disabled for the cluster.
Expand Down Expand Up @@ -253,6 +262,27 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private ZoneDistributionConfig zoneDistributionConfig;

/**
* Optional. If true, cluster endpoints that are created and registered by customers can be
* deleted asynchronously. That is, such a cluster endpoint can be de-registered before the
* forwarding rules in the cluster endpoint are deleted.
* @return value or {@code null} for none
*/
public java.lang.Boolean getAsyncClusterEndpointsDeletionEnabled() {
return asyncClusterEndpointsDeletionEnabled;
}

/**
* Optional. If true, cluster endpoints that are created and registered by customers can be
* deleted asynchronously. That is, such a cluster endpoint can be de-registered before the
* forwarding rules in the cluster endpoint are deleted.
* @param asyncClusterEndpointsDeletionEnabled asyncClusterEndpointsDeletionEnabled or {@code null} for none
*/
public Cluster setAsyncClusterEndpointsDeletionEnabled(java.lang.Boolean asyncClusterEndpointsDeletionEnabled) {
this.asyncClusterEndpointsDeletionEnabled = asyncClusterEndpointsDeletionEnabled;
return this;
}

/**
* Optional. The authorization mode of the Redis cluster. If not provided, auth feature is
* disabled for the cluster.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-redis/v1beta1/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-redis</artifactId>
<version>v1beta1-rev20250104-2.0.0</version>
<name>Google Cloud Memorystore for Redis API v1beta1-rev20250104-2.0.0</name>
<version>v1beta1-rev20250115-2.0.0</version>
<name>Google Cloud Memorystore for Redis API v1beta1-rev20250115-2.0.0</name>
<packaging>jar</packaging>

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

Expand Down

0 comments on commit 3ce2ec1

Please sign in to comment.