Skip to content

Commit b2614e4

Browse files
1 parent 9b9e7c6 commit b2614e4

File tree

7 files changed

+81
-9
lines changed

7 files changed

+81
-9
lines changed

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

clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/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/v1/2.0.0/com/google/api/services/container/model/NodeConfig.java

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

127+
/**
128+
* Flex Start flag for enabling Flex Start VM.
129+
* The value may be {@code null}.
130+
*/
131+
@com.google.api.client.util.Key
132+
private java.lang.Boolean flexStart;
133+
127134
/**
128135
* Google Container File System (image streaming) configs.
129136
* The value may be {@code null}.
@@ -599,6 +606,23 @@ public NodeConfig setFastSocket(FastSocket fastSocket) {
599606
return this;
600607
}
601608

609+
/**
610+
* Flex Start flag for enabling Flex Start VM.
611+
* @return value or {@code null} for none
612+
*/
613+
public java.lang.Boolean getFlexStart() {
614+
return flexStart;
615+
}
616+
617+
/**
618+
* Flex Start flag for enabling Flex Start VM.
619+
* @param flexStart flexStart or {@code null} for none
620+
*/
621+
public NodeConfig setFlexStart(java.lang.Boolean flexStart) {
622+
this.flexStart = flexStart;
623+
return this;
624+
}
625+
602626
/**
603627
* Google Container File System (image streaming) configs.
604628
* @return value or {@code null} for none

clients/google-api-services-container/v1/2.0.0/com/google/api/services/container/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) {

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

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

103+
/**
104+
* Flex Start flag for enabling Flex Start VM.
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key
108+
private java.lang.Boolean flexStart;
109+
103110
/**
104111
* GCFS config.
105112
* The value may be {@code null}.
@@ -456,6 +463,23 @@ public UpdateNodePoolRequest setFastSocket(FastSocket fastSocket) {
456463
return this;
457464
}
458465

466+
/**
467+
* Flex Start flag for enabling Flex Start VM.
468+
* @return value or {@code null} for none
469+
*/
470+
public java.lang.Boolean getFlexStart() {
471+
return flexStart;
472+
}
473+
474+
/**
475+
* Flex Start flag for enabling Flex Start VM.
476+
* @param flexStart flexStart or {@code null} for none
477+
*/
478+
public UpdateNodePoolRequest setFlexStart(java.lang.Boolean flexStart) {
479+
this.flexStart = flexStart;
480+
return this;
481+
}
482+
459483
/**
460484
* GCFS config.
461485
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)