Skip to content

Commit 895755d

Browse files
1 parent d59e11b commit 895755d

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

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

clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/AutoscaledRolloutPolicy.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,33 @@
3131
@SuppressWarnings("javadoc")
3232
public final class AutoscaledRolloutPolicy extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Optional. Time to wait after cordoning the blue pool before draining the nodes. Defaults to 3
36+
* days. The value can be set between 0 and 7 days, inclusive.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private String waitForDrainDuration;
41+
42+
/**
43+
* Optional. Time to wait after cordoning the blue pool before draining the nodes. Defaults to 3
44+
* days. The value can be set between 0 and 7 days, inclusive.
45+
* @return value or {@code null} for none
46+
*/
47+
public String getWaitForDrainDuration() {
48+
return waitForDrainDuration;
49+
}
50+
51+
/**
52+
* Optional. Time to wait after cordoning the blue pool before draining the nodes. Defaults to 3
53+
* days. The value can be set between 0 and 7 days, inclusive.
54+
* @param waitForDrainDuration waitForDrainDuration or {@code null} for none
55+
*/
56+
public AutoscaledRolloutPolicy setWaitForDrainDuration(String waitForDrainDuration) {
57+
this.waitForDrainDuration = waitForDrainDuration;
58+
return this;
59+
}
60+
3461
@Override
3562
public AutoscaledRolloutPolicy set(String fieldName, Object value) {
3663
return (AutoscaledRolloutPolicy) super.set(fieldName, value);

clients/google-api-services-container/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-container</artifactId>
11-
<version>v1beta1-rev20250916-2.0.0</version>
12-
<name>Kubernetes Engine API v1beta1-rev20250916-2.0.0</name>
11+
<version>v1beta1-rev20250923-2.0.0</version>
12+
<name>Kubernetes Engine API v1beta1-rev20250923-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)