File tree Expand file tree Collapse file tree 6 files changed +60
-9
lines changed
clients/google-api-services-container/v1beta1
com/google/api/services/container/v1beta1/model Expand file tree Collapse file tree 6 files changed +60
-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 >v1beta1-rev20240722 -2.0.0</version >
25
+ <version >v1beta1-rev20240730 -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:v1beta1-rev20240722 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-container:v1beta1-rev20240730 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -348,6 +348,13 @@ public final class NodeConfig extends com.google.api.client.json.GenericJson {
348
348
@ com .google .api .client .util .Key
349
349
private java .lang .Boolean spot ;
350
350
351
+ /**
352
+ * List of Storage Pools where boot disks are provisioned.
353
+ * The value may be {@code null}.
354
+ */
355
+ @ com .google .api .client .util .Key
356
+ private java .util .List <java .lang .String > storagePools ;
357
+
351
358
/**
352
359
* The list of instance tags applied to all nodes. Tags are used to identify valid sources or
353
360
* targets for network firewalls and are specified by the client during cluster or node pool
@@ -1112,6 +1119,23 @@ public NodeConfig setSpot(java.lang.Boolean spot) {
1112
1119
return this ;
1113
1120
}
1114
1121
1122
+ /**
1123
+ * List of Storage Pools where boot disks are provisioned.
1124
+ * @return value or {@code null} for none
1125
+ */
1126
+ public java .util .List <java .lang .String > getStoragePools () {
1127
+ return storagePools ;
1128
+ }
1129
+
1130
+ /**
1131
+ * List of Storage Pools where boot disks are provisioned.
1132
+ * @param storagePools storagePools or {@code null} for none
1133
+ */
1134
+ public NodeConfig setStoragePools (java .util .List <java .lang .String > storagePools ) {
1135
+ this .storagePools = storagePools ;
1136
+ return this ;
1137
+ }
1138
+
1115
1139
/**
1116
1140
* The list of instance tags applied to all nodes. Tags are used to identify valid sources or
1117
1141
* targets for network firewalls and are specified by the client during cluster or node pool
Original file line number Diff line number Diff line change 31
31
public final class SecretManagerConfig extends com .google .api .client .json .GenericJson {
32
32
33
33
/**
34
- * Whether the cluster is configured to use secret manager CSI component .
34
+ * Enable/Disable Secret Manager Config .
35
35
* The value may be {@code null}.
36
36
*/
37
37
@ com .google .api .client .util .Key
38
38
private java .lang .Boolean enabled ;
39
39
40
40
/**
41
- * Whether the cluster is configured to use secret manager CSI component .
41
+ * Enable/Disable Secret Manager Config .
42
42
* @return value or {@code null} for none
43
43
*/
44
44
public java .lang .Boolean getEnabled () {
45
45
return enabled ;
46
46
}
47
47
48
48
/**
49
- * Whether the cluster is configured to use secret manager CSI component .
49
+ * Enable/Disable Secret Manager Config .
50
50
* @param enabled enabled or {@code null} for none
51
51
*/
52
52
public SecretManagerConfig setEnabled (java .lang .Boolean enabled ) {
Original file line number Diff line number Diff line change @@ -237,6 +237,14 @@ public final class UpdateNodePoolRequest extends com.google.api.client.json.Gene
237
237
@ com .google .api .client .util .Key
238
238
private ResourceManagerTags resourceManagerTags ;
239
239
240
+ /**
241
+ * List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
242
+ * with storage-pools.
243
+ * The value may be {@code null}.
244
+ */
245
+ @ com .google .api .client .util .Key
246
+ private java .util .List <java .lang .String > storagePools ;
247
+
240
248
/**
241
249
* The desired network tags to be applied to all nodes in the node pool. If this field is not
242
250
* present, the tags will not be changed. Otherwise, the existing network tags will be *replaced*
@@ -762,6 +770,25 @@ public UpdateNodePoolRequest setResourceManagerTags(ResourceManagerTags resource
762
770
return this ;
763
771
}
764
772
773
+ /**
774
+ * List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
775
+ * with storage-pools.
776
+ * @return value or {@code null} for none
777
+ */
778
+ public java .util .List <java .lang .String > getStoragePools () {
779
+ return storagePools ;
780
+ }
781
+
782
+ /**
783
+ * List of Storage Pools where boot disks are provisioned. Existing Storage Pools will be replaced
784
+ * with storage-pools.
785
+ * @param storagePools storagePools or {@code null} for none
786
+ */
787
+ public UpdateNodePoolRequest setStoragePools (java .util .List <java .lang .String > storagePools ) {
788
+ this .storagePools = storagePools ;
789
+ return this ;
790
+ }
791
+
765
792
/**
766
793
* The desired network tags to be applied to all nodes in the node pool. If this field is not
767
794
* present, the tags will not be changed. Otherwise, the existing network tags will be *replaced*
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 >v1beta1-rev20240722 -2.0.0</version >
12
- <name >Kubernetes Engine API v1beta1-rev20240722 -2.0.0</name >
11
+ <version >v1beta1-rev20240730 -2.0.0</version >
12
+ <name >Kubernetes Engine API v1beta1-rev20240730 -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 >v1beta1-rev20240722 -2.0.0</version >
25
+ <version >v1beta1-rev20240730 -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:v1beta1-rev20240722 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-container:v1beta1-rev20240730 -2.0.0'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments