Skip to content

Commit 00e10dd

Browse files
1 parent 88fe9bf commit 00e10dd

File tree

10 files changed

+90
-42
lines changed

10 files changed

+90
-42
lines changed

clients/google-api-services-redis/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-redis</artifactId>
25-
<version>v1-rev20250213-2.0.0</version>
25+
<version>v1-rev20250303-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-redis:v1-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1-rev20250303-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-redis/v1/2.0.0/com/google/api/services/redis/v1/model/Cluster.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,14 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
158158
@com.google.api.client.util.Key
159159
private java.lang.String nodeType;
160160

161+
/**
162+
* Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger
163+
* ondemand critical update on the cluster.
164+
* The value may be {@code null}.
165+
*/
166+
@com.google.api.client.util.Key
167+
private java.lang.Boolean ondemandMaintenance;
168+
161169
/**
162170
* Optional. Persistence config (RDB, AOF) for the cluster.
163171
* The value may be {@code null}.
@@ -569,6 +577,25 @@ public Cluster setNodeType(java.lang.String nodeType) {
569577
return this;
570578
}
571579

580+
/**
581+
* Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger
582+
* ondemand critical update on the cluster.
583+
* @return value or {@code null} for none
584+
*/
585+
public java.lang.Boolean getOndemandMaintenance() {
586+
return ondemandMaintenance;
587+
}
588+
589+
/**
590+
* Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger
591+
* ondemand critical update on the cluster.
592+
* @param ondemandMaintenance ondemandMaintenance or {@code null} for none
593+
*/
594+
public Cluster setOndemandMaintenance(java.lang.Boolean ondemandMaintenance) {
595+
this.ondemandMaintenance = ondemandMaintenance;
596+
return this;
597+
}
598+
572599
/**
573600
* Optional. Persistence config (RDB, AOF) for the cluster.
574601
* @return value or {@code null} for none

clients/google-api-services-redis/v1/2.0.0/com/google/api/services/redis/v1/model/MachineConfiguration.java

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
public final class MachineConfiguration extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add
35-
* proto validations again after bug fix.
34+
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations
35+
* again after bug fix.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.Integer cpuCount;
4040

4141
/**
42-
* Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
42+
* Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -53,25 +53,24 @@ public final class MachineConfiguration extends com.google.api.client.json.Gener
5353
private java.lang.Integer shardCount;
5454

5555
/**
56-
* Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after
57-
* bug fix.
56+
* Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.
5857
* The value may be {@code null}.
5958
*/
6059
@com.google.api.client.util.Key
6160
private java.lang.Double vcpuCount;
6261

6362
/**
64-
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add
65-
* proto validations again after bug fix.
63+
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations
64+
* again after bug fix.
6665
* @return value or {@code null} for none
6766
*/
6867
public java.lang.Integer getCpuCount() {
6968
return cpuCount;
7069
}
7170

7271
/**
73-
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add
74-
* proto validations again after bug fix.
72+
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations
73+
* again after bug fix.
7574
* @param cpuCount cpuCount or {@code null} for none
7675
*/
7776
public MachineConfiguration setCpuCount(java.lang.Integer cpuCount) {
@@ -80,15 +79,15 @@ public MachineConfiguration setCpuCount(java.lang.Integer cpuCount) {
8079
}
8180

8281
/**
83-
* Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
82+
* Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.
8483
* @return value or {@code null} for none
8584
*/
8685
public java.lang.Long getMemorySizeInBytes() {
8786
return memorySizeInBytes;
8887
}
8988

9089
/**
91-
* Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
90+
* Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.
9291
* @param memorySizeInBytes memorySizeInBytes or {@code null} for none
9392
*/
9493
public MachineConfiguration setMemorySizeInBytes(java.lang.Long memorySizeInBytes) {
@@ -114,17 +113,15 @@ public MachineConfiguration setShardCount(java.lang.Integer shardCount) {
114113
}
115114

116115
/**
117-
* Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after
118-
* bug fix.
116+
* Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.
119117
* @return value or {@code null} for none
120118
*/
121119
public java.lang.Double getVcpuCount() {
122120
return vcpuCount;
123121
}
124122

125123
/**
126-
* Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after
127-
* bug fix.
124+
* Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.
128125
* @param vcpuCount vcpuCount or {@code null} for none
129126
*/
130127
public MachineConfiguration setVcpuCount(java.lang.Double vcpuCount) {

clients/google-api-services-redis/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-redis</artifactId>
11-
<version>v1-rev20250213-2.0.0</version>
12-
<name>Google Cloud Memorystore for Redis API v1-rev20250213-2.0.0</name>
11+
<version>v1-rev20250303-2.0.0</version>
12+
<name>Google Cloud Memorystore for Redis API v1-rev20250303-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-redis/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-redis</artifactId>
25-
<version>v1-rev20250213-2.0.0</version>
25+
<version>v1-rev20250303-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-redis:v1-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1-rev20250303-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-redis/v1beta1/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-redis</artifactId>
25-
<version>v1beta1-rev20250213-2.0.0</version>
25+
<version>v1beta1-rev20250303-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-redis:v1beta1-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20250303-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-redis/v1beta1/2.0.0/com/google/api/services/redis/v1beta1/model/Cluster.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,14 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
158158
@com.google.api.client.util.Key
159159
private java.lang.String nodeType;
160160

161+
/**
162+
* Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger
163+
* ondemand critical update on the cluster.
164+
* The value may be {@code null}.
165+
*/
166+
@com.google.api.client.util.Key
167+
private java.lang.Boolean ondemandMaintenance;
168+
161169
/**
162170
* Optional. Persistence config (RDB, AOF) for the cluster.
163171
* The value may be {@code null}.
@@ -569,6 +577,25 @@ public Cluster setNodeType(java.lang.String nodeType) {
569577
return this;
570578
}
571579

580+
/**
581+
* Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger
582+
* ondemand critical update on the cluster.
583+
* @return value or {@code null} for none
584+
*/
585+
public java.lang.Boolean getOndemandMaintenance() {
586+
return ondemandMaintenance;
587+
}
588+
589+
/**
590+
* Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger
591+
* ondemand critical update on the cluster.
592+
* @param ondemandMaintenance ondemandMaintenance or {@code null} for none
593+
*/
594+
public Cluster setOndemandMaintenance(java.lang.Boolean ondemandMaintenance) {
595+
this.ondemandMaintenance = ondemandMaintenance;
596+
return this;
597+
}
598+
572599
/**
573600
* Optional. Persistence config (RDB, AOF) for the cluster.
574601
* @return value or {@code null} for none

clients/google-api-services-redis/v1beta1/2.0.0/com/google/api/services/redis/v1beta1/model/MachineConfiguration.java

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
public final class MachineConfiguration extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add
35-
* proto validations again after bug fix.
34+
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations
35+
* again after bug fix.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
3939
private java.lang.Integer cpuCount;
4040

4141
/**
42-
* Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
42+
* Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -53,25 +53,24 @@ public final class MachineConfiguration extends com.google.api.client.json.Gener
5353
private java.lang.Integer shardCount;
5454

5555
/**
56-
* Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after
57-
* bug fix.
56+
* Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.
5857
* The value may be {@code null}.
5958
*/
6059
@com.google.api.client.util.Key
6160
private java.lang.Double vcpuCount;
6261

6362
/**
64-
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add
65-
* proto validations again after bug fix.
63+
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations
64+
* again after bug fix.
6665
* @return value or {@code null} for none
6766
*/
6867
public java.lang.Integer getCpuCount() {
6968
return cpuCount;
7069
}
7170

7271
/**
73-
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add
74-
* proto validations again after bug fix.
72+
* The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations
73+
* again after bug fix.
7574
* @param cpuCount cpuCount or {@code null} for none
7675
*/
7776
public MachineConfiguration setCpuCount(java.lang.Integer cpuCount) {
@@ -80,15 +79,15 @@ public MachineConfiguration setCpuCount(java.lang.Integer cpuCount) {
8079
}
8180

8281
/**
83-
* Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
82+
* Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.
8483
* @return value or {@code null} for none
8584
*/
8685
public java.lang.Long getMemorySizeInBytes() {
8786
return memorySizeInBytes;
8887
}
8988

9089
/**
91-
* Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
90+
* Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix.
9291
* @param memorySizeInBytes memorySizeInBytes or {@code null} for none
9392
*/
9493
public MachineConfiguration setMemorySizeInBytes(java.lang.Long memorySizeInBytes) {
@@ -114,17 +113,15 @@ public MachineConfiguration setShardCount(java.lang.Integer shardCount) {
114113
}
115114

116115
/**
117-
* Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after
118-
* bug fix.
116+
* Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.
119117
* @return value or {@code null} for none
120118
*/
121119
public java.lang.Double getVcpuCount() {
122120
return vcpuCount;
123121
}
124122

125123
/**
126-
* Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after
127-
* bug fix.
124+
* Optional. The number of vCPUs. TODO(b/342344482) add proto validations again after bug fix.
128125
* @param vcpuCount vcpuCount or {@code null} for none
129126
*/
130127
public MachineConfiguration setVcpuCount(java.lang.Double vcpuCount) {

clients/google-api-services-redis/v1beta1/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-redis</artifactId>
11-
<version>v1beta1-rev20250213-2.0.0</version>
12-
<name>Google Cloud Memorystore for Redis API v1beta1-rev20250213-2.0.0</name>
11+
<version>v1beta1-rev20250303-2.0.0</version>
12+
<name>Google Cloud Memorystore for Redis API v1beta1-rev20250303-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-redis/v1beta1/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-redis</artifactId>
25-
<version>v1beta1-rev20250213-2.0.0</version>
25+
<version>v1beta1-rev20250303-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-redis:v1beta1-rev20250213-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20250303-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)