Skip to content

Commit 939ae3f

Browse files
1 parent 9cc2442 commit 939ae3f

26 files changed

+2567
-36
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-rev20250617-2.0.0</version>
25+
<version>v1-rev20250701-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-rev20250617-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20250701-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
@@ -116,6 +116,13 @@ public final class AddonsConfig extends com.google.api.client.json.GenericJson {
116116
@com.google.api.client.util.Key
117117
private KubernetesDashboard kubernetesDashboard;
118118

119+
/**
120+
* Configuration for the Lustre CSI driver.
121+
* The value may be {@code null}.
122+
*/
123+
@com.google.api.client.util.Key
124+
private LustreCsiDriverConfig lustreCsiDriverConfig;
125+
119126
/**
120127
* Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the
121128
* Master, it does not track whether network policy is enabled for the nodes.
@@ -348,6 +355,23 @@ public AddonsConfig setKubernetesDashboard(KubernetesDashboard kubernetesDashboa
348355
return this;
349356
}
350357

358+
/**
359+
* Configuration for the Lustre CSI driver.
360+
* @return value or {@code null} for none
361+
*/
362+
public LustreCsiDriverConfig getLustreCsiDriverConfig() {
363+
return lustreCsiDriverConfig;
364+
}
365+
366+
/**
367+
* Configuration for the Lustre CSI driver.
368+
* @param lustreCsiDriverConfig lustreCsiDriverConfig or {@code null} for none
369+
*/
370+
public AddonsConfig setLustreCsiDriverConfig(LustreCsiDriverConfig lustreCsiDriverConfig) {
371+
this.lustreCsiDriverConfig = lustreCsiDriverConfig;
372+
return this;
373+
}
374+
351375
/**
352376
* Configuration for NetworkPolicy. This only tracks whether the addon is enabled or not on the
353377
* Master, it does not track whether network policy is enabled for the nodes.
Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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+
* BootDisk specifies the boot disk configuration for nodepools.
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 BootDisk extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Disk type of the boot disk. (i.e. Hyperdisk-Balanced, PD-Balanced, etc.)
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String diskType;
39+
40+
/**
41+
* For Hyperdisk-Balanced only, the provisioned IOPS config value.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
45+
private java.lang.Long provisionedIops;
46+
47+
/**
48+
* For Hyperdisk-Balanced only, the provisioned throughput config value.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
52+
private java.lang.Long provisionedThroughput;
53+
54+
/**
55+
* Disk size in GB. Replaces NodeConfig.disk_size_gb
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
59+
private java.lang.Long sizeGb;
60+
61+
/**
62+
* Disk type of the boot disk. (i.e. Hyperdisk-Balanced, PD-Balanced, etc.)
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.String getDiskType() {
66+
return diskType;
67+
}
68+
69+
/**
70+
* Disk type of the boot disk. (i.e. Hyperdisk-Balanced, PD-Balanced, etc.)
71+
* @param diskType diskType or {@code null} for none
72+
*/
73+
public BootDisk setDiskType(java.lang.String diskType) {
74+
this.diskType = diskType;
75+
return this;
76+
}
77+
78+
/**
79+
* For Hyperdisk-Balanced only, the provisioned IOPS config value.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.Long getProvisionedIops() {
83+
return provisionedIops;
84+
}
85+
86+
/**
87+
* For Hyperdisk-Balanced only, the provisioned IOPS config value.
88+
* @param provisionedIops provisionedIops or {@code null} for none
89+
*/
90+
public BootDisk setProvisionedIops(java.lang.Long provisionedIops) {
91+
this.provisionedIops = provisionedIops;
92+
return this;
93+
}
94+
95+
/**
96+
* For Hyperdisk-Balanced only, the provisioned throughput config value.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.Long getProvisionedThroughput() {
100+
return provisionedThroughput;
101+
}
102+
103+
/**
104+
* For Hyperdisk-Balanced only, the provisioned throughput config value.
105+
* @param provisionedThroughput provisionedThroughput or {@code null} for none
106+
*/
107+
public BootDisk setProvisionedThroughput(java.lang.Long provisionedThroughput) {
108+
this.provisionedThroughput = provisionedThroughput;
109+
return this;
110+
}
111+
112+
/**
113+
* Disk size in GB. Replaces NodeConfig.disk_size_gb
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.Long getSizeGb() {
117+
return sizeGb;
118+
}
119+
120+
/**
121+
* Disk size in GB. Replaces NodeConfig.disk_size_gb
122+
* @param sizeGb sizeGb or {@code null} for none
123+
*/
124+
public BootDisk setSizeGb(java.lang.Long sizeGb) {
125+
this.sizeGb = sizeGb;
126+
return this;
127+
}
128+
129+
@Override
130+
public BootDisk set(String fieldName, Object value) {
131+
return (BootDisk) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public BootDisk clone() {
136+
return (BootDisk) super.clone();
137+
}
138+
139+
}

0 commit comments

Comments
 (0)