Skip to content

Commit 6e84324

Browse files
1 parent 178265d commit 6e84324

File tree

9 files changed

+196
-9
lines changed

9 files changed

+196
-9
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-rev20250311-2.0.0</version>
25+
<version>v1beta1-rev20250318-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-rev20250311-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1beta1-rev20250318-2.0.0'
3939
}
4040
```
4141

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

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

34+
/**
35+
* Number of local SSDs to use for GKE Data Cache.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Integer dataCacheCount;
40+
3441
/**
3542
* Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A zero (or unset)
3643
* value has different meanings depending on machine type being used: 1. For pre-Gen3 machines,
@@ -47,6 +54,23 @@ public final class EphemeralStorageLocalSsdConfig extends com.google.api.client.
4754
@com.google.api.client.util.Key
4855
private java.lang.Integer localSsdCount;
4956

57+
/**
58+
* Number of local SSDs to use for GKE Data Cache.
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.Integer getDataCacheCount() {
62+
return dataCacheCount;
63+
}
64+
65+
/**
66+
* Number of local SSDs to use for GKE Data Cache.
67+
* @param dataCacheCount dataCacheCount or {@code null} for none
68+
*/
69+
public EphemeralStorageLocalSsdConfig setDataCacheCount(java.lang.Integer dataCacheCount) {
70+
this.dataCacheCount = dataCacheCount;
71+
return this;
72+
}
73+
5074
/**
5175
* Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A zero (or unset)
5276
* value has different meanings depending on machine type being used: 1. For pre-Gen3 machines,

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,13 @@ public final class NodeConfig extends com.google.api.client.json.GenericJson {
134134
@com.google.api.client.util.Key
135135
private FastSocket fastSocket;
136136

137+
/**
138+
* Flex Start flag for enabling Flex Start VM.
139+
* The value may be {@code null}.
140+
*/
141+
@com.google.api.client.util.Key
142+
private java.lang.Boolean flexStart;
143+
137144
/**
138145
* GCFS (Google Container File System) configs.
139146
* The value may be {@code null}.
@@ -640,6 +647,23 @@ public NodeConfig setFastSocket(FastSocket fastSocket) {
640647
return this;
641648
}
642649

650+
/**
651+
* Flex Start flag for enabling Flex Start VM.
652+
* @return value or {@code null} for none
653+
*/
654+
public java.lang.Boolean getFlexStart() {
655+
return flexStart;
656+
}
657+
658+
/**
659+
* Flex Start flag for enabling Flex Start VM.
660+
* @param flexStart flexStart or {@code null} for none
661+
*/
662+
public NodeConfig setFlexStart(java.lang.Boolean flexStart) {
663+
this.flexStart = flexStart;
664+
return this;
665+
}
666+
643667
/**
644668
* GCFS (Google Container File System) configs.
645669
* @return value or {@code null} for none

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public final class NodePool extends com.google.api.client.json.GenericJson {
3636

3737
/**
3838
* Specifies the autopilot configuration for this node pool. This field is exclusively reserved
39-
* for Cluster Autoscaler to implement go/gke-managed-nodes-ccc-api
39+
* for Cluster Autoscaler.
4040
* The value may be {@code null}.
4141
*/
4242
@com.google.api.client.util.Key
@@ -209,7 +209,7 @@ public final class NodePool extends com.google.api.client.json.GenericJson {
209209

210210
/**
211211
* Specifies the autopilot configuration for this node pool. This field is exclusively reserved
212-
* for Cluster Autoscaler to implement go/gke-managed-nodes-ccc-api
212+
* for Cluster Autoscaler.
213213
* @return value or {@code null} for none
214214
*/
215215
public AutopilotConfig getAutopilotConfig() {
@@ -218,7 +218,7 @@ public AutopilotConfig getAutopilotConfig() {
218218

219219
/**
220220
* Specifies the autopilot configuration for this node pool. This field is exclusively reserved
221-
* for Cluster Autoscaler to implement go/gke-managed-nodes-ccc-api
221+
* for Cluster Autoscaler.
222222
* @param autopilotConfig autopilotConfig or {@code null} for none
223223
*/
224224
public NodePool setAutopilotConfig(AutopilotConfig autopilotConfig) {
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.container.v1beta1.model;
18+
19+
/**
20+
* RotationConfig is config for secret manager auto rotation.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Kubernetes Engine API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class RotationConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Whether the rotation is enabled.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* The interval between two consecutive rotations. Default rotation interval is 2 minutes.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private String rotationInterval;
46+
47+
/**
48+
* Whether the rotation is enabled.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Boolean getEnabled() {
52+
return enabled;
53+
}
54+
55+
/**
56+
* Whether the rotation is enabled.
57+
* @param enabled enabled or {@code null} for none
58+
*/
59+
public RotationConfig setEnabled(java.lang.Boolean enabled) {
60+
this.enabled = enabled;
61+
return this;
62+
}
63+
64+
/**
65+
* The interval between two consecutive rotations. Default rotation interval is 2 minutes.
66+
* @return value or {@code null} for none
67+
*/
68+
public String getRotationInterval() {
69+
return rotationInterval;
70+
}
71+
72+
/**
73+
* The interval between two consecutive rotations. Default rotation interval is 2 minutes.
74+
* @param rotationInterval rotationInterval or {@code null} for none
75+
*/
76+
public RotationConfig setRotationInterval(String rotationInterval) {
77+
this.rotationInterval = rotationInterval;
78+
return this;
79+
}
80+
81+
@Override
82+
public RotationConfig set(String fieldName, Object value) {
83+
return (RotationConfig) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public RotationConfig clone() {
88+
return (RotationConfig) super.clone();
89+
}
90+
91+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class SecretManagerConfig extends com.google.api.client.json.Generi
3737
@com.google.api.client.util.Key
3838
private java.lang.Boolean enabled;
3939

40+
/**
41+
* Rotation config for secret manager.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private RotationConfig rotationConfig;
46+
4047
/**
4148
* Enable/Disable Secret Manager Config.
4249
* @return value or {@code null} for none
@@ -54,6 +61,23 @@ public SecretManagerConfig setEnabled(java.lang.Boolean enabled) {
5461
return this;
5562
}
5663

64+
/**
65+
* Rotation config for secret manager.
66+
* @return value or {@code null} for none
67+
*/
68+
public RotationConfig getRotationConfig() {
69+
return rotationConfig;
70+
}
71+
72+
/**
73+
* Rotation config for secret manager.
74+
* @param rotationConfig rotationConfig or {@code null} for none
75+
*/
76+
public SecretManagerConfig setRotationConfig(RotationConfig rotationConfig) {
77+
this.rotationConfig = rotationConfig;
78+
return this;
79+
}
80+
5781
@Override
5882
public SecretManagerConfig set(String fieldName, Object value) {
5983
return (SecretManagerConfig) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ public final class UpdateNodePoolRequest extends com.google.api.client.json.Gene
9898
@com.google.api.client.util.Key
9999
private FastSocket fastSocket;
100100

101+
/**
102+
* Flex Start flag for enabling Flex Start VM.
103+
* The value may be {@code null}.
104+
*/
105+
@com.google.api.client.util.Key
106+
private java.lang.Boolean flexStart;
107+
101108
/**
102109
* GCFS config.
103110
* The value may be {@code null}.
@@ -448,6 +455,23 @@ public UpdateNodePoolRequest setFastSocket(FastSocket fastSocket) {
448455
return this;
449456
}
450457

458+
/**
459+
* Flex Start flag for enabling Flex Start VM.
460+
* @return value or {@code null} for none
461+
*/
462+
public java.lang.Boolean getFlexStart() {
463+
return flexStart;
464+
}
465+
466+
/**
467+
* Flex Start flag for enabling Flex Start VM.
468+
* @param flexStart flexStart or {@code null} for none
469+
*/
470+
public UpdateNodePoolRequest setFlexStart(java.lang.Boolean flexStart) {
471+
this.flexStart = flexStart;
472+
return this;
473+
}
474+
451475
/**
452476
* GCFS config.
453477
* @return value or {@code null} for none

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-rev20250311-2.0.0</version>
12-
<name>Kubernetes Engine API v1beta1-rev20250311-2.0.0</name>
11+
<version>v1beta1-rev20250318-2.0.0</version>
12+
<name>Kubernetes Engine API v1beta1-rev20250318-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-rev20250311-2.0.0</version>
25+
<version>v1beta1-rev20250318-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-rev20250311-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1beta1-rev20250318-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)