Skip to content

Commit 810b819

Browse files
1 parent af47746 commit 810b819

File tree

20 files changed

+879
-12
lines changed

20 files changed

+879
-12
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-rev20260113-2.0.0</version>
25+
<version>v1-rev20260120-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-rev20260113-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20260120-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ public final class AddonsConfig extends com.google.api.client.json.GenericJson {
144144
@com.google.api.client.util.Key
145145
private RayOperatorConfig rayOperatorConfig;
146146

147+
/**
148+
* Optional. Configuration for the slice controller add-on.
149+
* The value may be {@code null}.
150+
*/
151+
@com.google.api.client.util.Key
152+
private SliceControllerConfig sliceControllerConfig;
153+
147154
/**
148155
* Optional. Configuration for the StatefulHA add-on.
149156
* The value may be {@code null}.
@@ -422,6 +429,23 @@ public AddonsConfig setRayOperatorConfig(RayOperatorConfig rayOperatorConfig) {
422429
return this;
423430
}
424431

432+
/**
433+
* Optional. Configuration for the slice controller add-on.
434+
* @return value or {@code null} for none
435+
*/
436+
public SliceControllerConfig getSliceControllerConfig() {
437+
return sliceControllerConfig;
438+
}
439+
440+
/**
441+
* Optional. Configuration for the slice controller add-on.
442+
* @param sliceControllerConfig sliceControllerConfig or {@code null} for none
443+
*/
444+
public AddonsConfig setSliceControllerConfig(SliceControllerConfig sliceControllerConfig) {
445+
this.sliceControllerConfig = sliceControllerConfig;
446+
return this;
447+
}
448+
425449
/**
426450
* Optional. Configuration for the StatefulHA add-on.
427451
* @return value or {@code null} for none
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.model;
18+
19+
/**
20+
* Swap on the node's boot disk.
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 BootDiskProfile extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Specifies the size of the swap space in gibibytes (GiB).
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long swapSizeGib;
39+
40+
/**
41+
* Specifies the size of the swap space as a percentage of the boot disk size.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Integer swapSizePercent;
46+
47+
/**
48+
* Specifies the size of the swap space in gibibytes (GiB).
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Long getSwapSizeGib() {
52+
return swapSizeGib;
53+
}
54+
55+
/**
56+
* Specifies the size of the swap space in gibibytes (GiB).
57+
* @param swapSizeGib swapSizeGib or {@code null} for none
58+
*/
59+
public BootDiskProfile setSwapSizeGib(java.lang.Long swapSizeGib) {
60+
this.swapSizeGib = swapSizeGib;
61+
return this;
62+
}
63+
64+
/**
65+
* Specifies the size of the swap space as a percentage of the boot disk size.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.Integer getSwapSizePercent() {
69+
return swapSizePercent;
70+
}
71+
72+
/**
73+
* Specifies the size of the swap space as a percentage of the boot disk size.
74+
* @param swapSizePercent swapSizePercent or {@code null} for none
75+
*/
76+
public BootDiskProfile setSwapSizePercent(java.lang.Integer swapSizePercent) {
77+
this.swapSizePercent = swapSizePercent;
78+
return this;
79+
}
80+
81+
@Override
82+
public BootDiskProfile set(String fieldName, Object value) {
83+
return (BootDiskProfile) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public BootDiskProfile clone() {
88+
return (BootDiskProfile) super.clone();
89+
}
90+
91+
}
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.model;
18+
19+
/**
20+
* Provisions a new, separate local NVMe SSD exclusively for swap.
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 DedicatedLocalSsdProfile extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The number of physical local NVMe SSD disks to attach.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long diskCount;
39+
40+
/**
41+
* The number of physical local NVMe SSD disks to attach.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Long getDiskCount() {
45+
return diskCount;
46+
}
47+
48+
/**
49+
* The number of physical local NVMe SSD disks to attach.
50+
* @param diskCount diskCount or {@code null} for none
51+
*/
52+
public DedicatedLocalSsdProfile setDiskCount(java.lang.Long diskCount) {
53+
this.diskCount = diskCount;
54+
return this;
55+
}
56+
57+
@Override
58+
public DedicatedLocalSsdProfile set(String fieldName, Object value) {
59+
return (DedicatedLocalSsdProfile) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public DedicatedLocalSsdProfile clone() {
64+
return (DedicatedLocalSsdProfile) super.clone();
65+
}
66+
67+
}
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.model;
18+
19+
/**
20+
* Defines encryption settings for the swap space.
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 EncryptionConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. If true, swap space will not be encrypted. Defaults to false (encrypted).
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean disabled;
39+
40+
/**
41+
* Optional. If true, swap space will not be encrypted. Defaults to false (encrypted).
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getDisabled() {
45+
return disabled;
46+
}
47+
48+
/**
49+
* Optional. If true, swap space will not be encrypted. Defaults to false (encrypted).
50+
* @param disabled disabled or {@code null} for none
51+
*/
52+
public EncryptionConfig setDisabled(java.lang.Boolean disabled) {
53+
this.disabled = disabled;
54+
return this;
55+
}
56+
57+
@Override
58+
public EncryptionConfig set(String fieldName, Object value) {
59+
return (EncryptionConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public EncryptionConfig clone() {
64+
return (EncryptionConfig) super.clone();
65+
}
66+
67+
}
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.model;
18+
19+
/**
20+
* Swap on the local SSD shared with pod ephemeral storage.
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 EphemeralLocalSsdProfile extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Specifies the size of the swap space in gibibytes (GiB).
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long swapSizeGib;
39+
40+
/**
41+
* Specifies the size of the swap space as a percentage of the ephemeral local SSD capacity.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Integer swapSizePercent;
46+
47+
/**
48+
* Specifies the size of the swap space in gibibytes (GiB).
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Long getSwapSizeGib() {
52+
return swapSizeGib;
53+
}
54+
55+
/**
56+
* Specifies the size of the swap space in gibibytes (GiB).
57+
* @param swapSizeGib swapSizeGib or {@code null} for none
58+
*/
59+
public EphemeralLocalSsdProfile setSwapSizeGib(java.lang.Long swapSizeGib) {
60+
this.swapSizeGib = swapSizeGib;
61+
return this;
62+
}
63+
64+
/**
65+
* Specifies the size of the swap space as a percentage of the ephemeral local SSD capacity.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.Integer getSwapSizePercent() {
69+
return swapSizePercent;
70+
}
71+
72+
/**
73+
* Specifies the size of the swap space as a percentage of the ephemeral local SSD capacity.
74+
* @param swapSizePercent swapSizePercent or {@code null} for none
75+
*/
76+
public EphemeralLocalSsdProfile setSwapSizePercent(java.lang.Integer swapSizePercent) {
77+
this.swapSizePercent = swapSizePercent;
78+
return this;
79+
}
80+
81+
@Override
82+
public EphemeralLocalSsdProfile set(String fieldName, Object value) {
83+
return (EphemeralLocalSsdProfile) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public EphemeralLocalSsdProfile clone() {
88+
return (EphemeralLocalSsdProfile) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)