File tree Expand file tree Collapse file tree 7 files changed +81
-9
lines changed
clients/google-api-services-container/v1
com/google/api/services/container/model Expand file tree Collapse file tree 7 files changed +81
-9
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-container</artifactId >
25
- <version >v1-rev20250311 -2.0.0</version >
25
+ <version >v1-rev20250318 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change 31
31
@ SuppressWarnings ("javadoc" )
32
32
public final class EphemeralStorageLocalSsdConfig extends com .google .api .client .json .GenericJson {
33
33
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
+
34
41
/**
35
42
* Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A zero (or unset)
36
43
* 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.
47
54
@ com .google .api .client .util .Key
48
55
private java .lang .Integer localSsdCount ;
49
56
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
+
50
74
/**
51
75
* Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A zero (or unset)
52
76
* value has different meanings depending on machine type being used: 1. For pre-Gen3 machines,
Original file line number Diff line number Diff line change @@ -124,6 +124,13 @@ public final class NodeConfig extends com.google.api.client.json.GenericJson {
124
124
@ com .google .api .client .util .Key
125
125
private FastSocket fastSocket ;
126
126
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
+
127
134
/**
128
135
* Google Container File System (image streaming) configs.
129
136
* The value may be {@code null}.
@@ -599,6 +606,23 @@ public NodeConfig setFastSocket(FastSocket fastSocket) {
599
606
return this ;
600
607
}
601
608
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
+
602
626
/**
603
627
* Google Container File System (image streaming) configs.
604
628
* @return value or {@code null} for none
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public final class NodePool extends com.google.api.client.json.GenericJson {
36
36
37
37
/**
38
38
* 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.
40
40
* The value may be {@code null}.
41
41
*/
42
42
@ com .google .api .client .util .Key
@@ -209,7 +209,7 @@ public final class NodePool extends com.google.api.client.json.GenericJson {
209
209
210
210
/**
211
211
* 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.
213
213
* @return value or {@code null} for none
214
214
*/
215
215
public AutopilotConfig getAutopilotConfig () {
@@ -218,7 +218,7 @@ public AutopilotConfig getAutopilotConfig() {
218
218
219
219
/**
220
220
* 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.
222
222
* @param autopilotConfig autopilotConfig or {@code null} for none
223
223
*/
224
224
public NodePool setAutopilotConfig (AutopilotConfig autopilotConfig ) {
Original file line number Diff line number Diff line change @@ -100,6 +100,13 @@ public final class UpdateNodePoolRequest extends com.google.api.client.json.Gene
100
100
@ com .google .api .client .util .Key
101
101
private FastSocket fastSocket ;
102
102
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
+
103
110
/**
104
111
* GCFS config.
105
112
* The value may be {@code null}.
@@ -456,6 +463,23 @@ public UpdateNodePoolRequest setFastSocket(FastSocket fastSocket) {
456
463
return this ;
457
464
}
458
465
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
+
459
483
/**
460
484
* GCFS config.
461
485
* @return value or {@code null} for none
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<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 >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-container</artifactId >
25
- <version >v1-rev20250311 -2.0.0</version >
25
+ <version >v1-rev20250318 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments