Skip to content

Commit f3aa733

Browse files
1 parent 8971593 commit f3aa733

File tree

10 files changed

+24
-96
lines changed

10 files changed

+24
-96
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-rev20251009-2.0.0</version>
25+
<version>v1-rev20251021-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-rev20251009-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1-rev20251021-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
449-
* is primarily intended for internal usage.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
455-
primarily intended for internal usage.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
463-
* is primarily intended for internal usage.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public final class ResourceMaintenanceSchedule extends com.google.api.client.jso
4343
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
4444
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
4545
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
46-
* Deprecated. Use phase instead.
4746
* The value may be {@code null}.
4847
*/
4948
@com.google.api.client.util.Key
@@ -56,16 +55,6 @@ public final class ResourceMaintenanceSchedule extends com.google.api.client.jso
5655
@com.google.api.client.util.Key
5756
private TimeOfDay time;
5857

59-
/**
60-
* Optional. Phase of the maintenance window. This is to capture order of maintenance. For
61-
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
62-
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
63-
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
64-
* The value may be {@code null}.
65-
*/
66-
@com.google.api.client.util.Key
67-
private java.lang.String week;
68-
6958
/**
7059
* Optional. Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.
7160
* @return value or {@code null} for none
@@ -88,7 +77,6 @@ public ResourceMaintenanceSchedule setDay(java.lang.String day) {
8877
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
8978
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
9079
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
91-
* Deprecated. Use phase instead.
9280
* @return value or {@code null} for none
9381
*/
9482
public java.lang.String getPhase() {
@@ -100,7 +88,6 @@ public java.lang.String getPhase() {
10088
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
10189
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
10290
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
103-
* Deprecated. Use phase instead.
10491
* @param phase phase or {@code null} for none
10592
*/
10693
public ResourceMaintenanceSchedule setPhase(java.lang.String phase) {
@@ -125,29 +112,6 @@ public ResourceMaintenanceSchedule setTime(TimeOfDay time) {
125112
return this;
126113
}
127114

128-
/**
129-
* Optional. Phase of the maintenance window. This is to capture order of maintenance. For
130-
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
131-
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
132-
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
133-
* @return value or {@code null} for none
134-
*/
135-
public java.lang.String getWeek() {
136-
return week;
137-
}
138-
139-
/**
140-
* Optional. Phase of the maintenance window. This is to capture order of maintenance. For
141-
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
142-
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
143-
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
144-
* @param week week or {@code null} for none
145-
*/
146-
public ResourceMaintenanceSchedule setWeek(java.lang.String week) {
147-
this.week = week;
148-
return this;
149-
}
150-
151115
@Override
152116
public ResourceMaintenanceSchedule set(String fieldName, Object value) {
153117
return (ResourceMaintenanceSchedule) super.set(fieldName, value);

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-rev20251009-2.0.0</version>
12-
<name>Google Cloud Memorystore for Redis API v1-rev20251009-2.0.0</name>
11+
<version>v1-rev20251021-2.0.0</version>
12+
<name>Google Cloud Memorystore for Redis API v1-rev20251021-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-rev20251009-2.0.0</version>
25+
<version>v1-rev20251021-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-rev20251009-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1-rev20251021-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-rev20251009-2.0.0</version>
25+
<version>v1beta1-rev20251021-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-rev20251009-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20251021-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
449-
* is primarily intended for internal usage.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
455-
primarily intended for internal usage.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
463-
* is primarily intended for internal usage.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public final class ResourceMaintenanceSchedule extends com.google.api.client.jso
4343
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
4444
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
4545
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
46-
* Deprecated. Use phase instead.
4746
* The value may be {@code null}.
4847
*/
4948
@com.google.api.client.util.Key
@@ -56,16 +55,6 @@ public final class ResourceMaintenanceSchedule extends com.google.api.client.jso
5655
@com.google.api.client.util.Key
5756
private TimeOfDay time;
5857

59-
/**
60-
* Optional. Phase of the maintenance window. This is to capture order of maintenance. For
61-
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
62-
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
63-
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
64-
* The value may be {@code null}.
65-
*/
66-
@com.google.api.client.util.Key
67-
private java.lang.String week;
68-
6958
/**
7059
* Optional. Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.
7160
* @return value or {@code null} for none
@@ -88,7 +77,6 @@ public ResourceMaintenanceSchedule setDay(java.lang.String day) {
8877
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
8978
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
9079
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
91-
* Deprecated. Use phase instead.
9280
* @return value or {@code null} for none
9381
*/
9482
public java.lang.String getPhase() {
@@ -100,7 +88,6 @@ public java.lang.String getPhase() {
10088
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
10189
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
10290
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
103-
* Deprecated. Use phase instead.
10491
* @param phase phase or {@code null} for none
10592
*/
10693
public ResourceMaintenanceSchedule setPhase(java.lang.String phase) {
@@ -125,29 +112,6 @@ public ResourceMaintenanceSchedule setTime(TimeOfDay time) {
125112
return this;
126113
}
127114

128-
/**
129-
* Optional. Phase of the maintenance window. This is to capture order of maintenance. For
130-
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
131-
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
132-
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
133-
* @return value or {@code null} for none
134-
*/
135-
public java.lang.String getWeek() {
136-
return week;
137-
}
138-
139-
/**
140-
* Optional. Phase of the maintenance window. This is to capture order of maintenance. For
141-
* example, for Cloud SQL resources, this can be used to capture if the maintenance window is in
142-
* Week1, Week2, Week5, etc. Non production resources are usually part of early phase. For more
143-
* details, refer to Cloud SQL resources - https://cloud.google.com/sql/docs/mysql/maintenance
144-
* @param week week or {@code null} for none
145-
*/
146-
public ResourceMaintenanceSchedule setWeek(java.lang.String week) {
147-
this.week = week;
148-
return this;
149-
}
150-
151115
@Override
152116
public ResourceMaintenanceSchedule set(String fieldName, Object value) {
153117
return (ResourceMaintenanceSchedule) super.set(fieldName, value);

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-rev20251009-2.0.0</version>
12-
<name>Google Cloud Memorystore for Redis API v1beta1-rev20251009-2.0.0</name>
11+
<version>v1beta1-rev20251021-2.0.0</version>
12+
<name>Google Cloud Memorystore for Redis API v1beta1-rev20251021-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-rev20251009-2.0.0</version>
25+
<version>v1beta1-rev20251021-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-rev20251009-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1beta1-rev20251021-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)