Skip to content

Commit b0ccb5c

Browse files
1 parent 34df7fb commit b0ccb5c

20 files changed

+54
-46
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-rev20260331-2.0.0</version>
25+
<version>v1-rev20260406-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-rev20260331-2.0.0'
38+
implementation 'com.google.apis:google-api-services-redis:v1-rev20260406-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: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1438,21 +1438,21 @@ public List setPageSize(java.lang.Integer pageSize) {
14381438
}
14391439

14401440
/**
1441-
* Optional. The `next_page_token` value returned from a previous ListAclPolicies request,
1442-
* if any.
1441+
* Optional. The `next_page_token` value returned from a previous `ListAclPolicies`
1442+
* request, if any.
14431443
*/
14441444
@com.google.api.client.util.Key
14451445
private java.lang.String pageToken;
14461446

1447-
/** Optional. The `next_page_token` value returned from a previous ListAclPolicies request, if any.
1447+
/** Optional. The `next_page_token` value returned from a previous `ListAclPolicies` request, if any.
14481448
*/
14491449
public java.lang.String getPageToken() {
14501450
return pageToken;
14511451
}
14521452

14531453
/**
1454-
* Optional. The `next_page_token` value returned from a previous ListAclPolicies request,
1455-
* if any.
1454+
* Optional. The `next_page_token` value returned from a previous `ListAclPolicies`
1455+
* request, if any.
14561456
*/
14571457
public List setPageToken(java.lang.String pageToken) {
14581458
this.pageToken = pageToken;
@@ -1616,13 +1616,13 @@ public Patch setRequestId(java.lang.String requestId) {
16161616
/**
16171617
* Optional. Mask of fields to be updated. At least one path must be supplied in this
16181618
* field. The elements of the repeated paths field may only include these fields from
1619-
* AclPolicy: * `rules`
1619+
* `AclPolicy`: * `rules`
16201620
*/
16211621
@com.google.api.client.util.Key
16221622
private String updateMask;
16231623

16241624
/** Optional. Mask of fields to be updated. At least one path must be supplied in this field. The
1625-
elements of the repeated paths field may only include these fields from AclPolicy: * `rules`
1625+
elements of the repeated paths field may only include these fields from `AclPolicy`: * `rules`
16261626
*/
16271627
public String getUpdateMask() {
16281628
return updateMask;
@@ -1631,7 +1631,7 @@ public String getUpdateMask() {
16311631
/**
16321632
* Optional. Mask of fields to be updated. At least one path must be supplied in this
16331633
* field. The elements of the repeated paths field may only include these fields from
1634-
* AclPolicy: * `rules`
1634+
* `AclPolicy`: * `rules`
16351635
*/
16361636
public Patch setUpdateMask(String updateMask) {
16371637
this.updateMask = updateMask;
@@ -3853,17 +3853,21 @@ public List setPageSize(java.lang.Integer pageSize) {
38533853
return this;
38543854
}
38553855

3856-
/** The `next_page_token` value returned from a previous ListClusters request, if any. */
3856+
/**
3857+
* The `next_page_token` value returned from a previous `ListClusters` request, if any.
3858+
*/
38573859
@com.google.api.client.util.Key
38583860
private java.lang.String pageToken;
38593861

3860-
/** The `next_page_token` value returned from a previous ListClusters request, if any.
3862+
/** The `next_page_token` value returned from a previous `ListClusters` request, if any.
38613863
*/
38623864
public java.lang.String getPageToken() {
38633865
return pageToken;
38643866
}
38653867

3866-
/** The `next_page_token` value returned from a previous ListClusters request, if any. */
3868+
/**
3869+
* The `next_page_token` value returned from a previous `ListClusters` request, if any.
3870+
*/
38673871
public List setPageToken(java.lang.String pageToken) {
38683872
this.pageToken = pageToken;
38693873
return this;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Request for [BackupCluster].
20+
* Request for `BackupCluster`.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Request for [ExportBackup].
20+
* Request for `ExportBackup`.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Response for ListAclPolicies.
20+
* Response for `ListAclPolicies`.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Response for [ListBackupCollections].
20+
* Response for `ListBackupCollections`.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Response for [ListBackups].
20+
* Response for `ListBackups`.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.redis.v1.model;
1818

1919
/**
20-
* Response for ListClusters.
20+
* Response for `ListClusters`.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Google Cloud Memorystore for Redis API. For a

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

0 commit comments

Comments
 (0)