Skip to content

Commit 60b2b42

Browse files
1 parent ddd3282 commit 60b2b42

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2182
-1353
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-rev20250513-2.0.0</version>
25+
<version>v1-rev20250603-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-rev20250513-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20250603-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 982 additions & 786 deletions
Large diffs are not rendered by default.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final class AcceleratorConfig extends com.google.api.client.json.GenericJ
3939

4040
/**
4141
* The accelerator type resource name. List of supported accelerators
42-
* [here](https://cloud.google.com/compute/docs/gpus)
42+
* [here](https://{$universe.dns_names.final_documentation_domain}/compute/docs/gpus)
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
@@ -86,7 +86,7 @@ public AcceleratorConfig setAcceleratorCount(java.lang.Long acceleratorCount) {
8686

8787
/**
8888
* The accelerator type resource name. List of supported accelerators
89-
* [here](https://cloud.google.com/compute/docs/gpus)
89+
* [here](https://{$universe.dns_names.final_documentation_domain}/compute/docs/gpus)
9090
* @return value or {@code null} for none
9191
*/
9292
public java.lang.String getAcceleratorType() {
@@ -95,7 +95,7 @@ public java.lang.String getAcceleratorType() {
9595

9696
/**
9797
* The accelerator type resource name. List of supported accelerators
98-
* [here](https://cloud.google.com/compute/docs/gpus)
98+
* [here](https://{$universe.dns_names.final_documentation_domain}/compute/docs/gpus)
9999
* @param acceleratorType acceleratorType or {@code null} for none
100100
*/
101101
public AcceleratorConfig setAcceleratorType(java.lang.String acceleratorType) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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+
* AdditionalIPRangesConfig is the configuration for individual additional subnetwork attached to
21+
* the cluster
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Kubernetes Engine API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class AdditionalIPRangesConfig extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* List of secondary ranges names within this subnetwork that can be used for pod IPs. Example1:
36+
* gke-pod-range1 Example2: gke-pod-range1,gke-pod-range2
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.util.List<java.lang.String> podIpv4RangeNames;
41+
42+
/**
43+
* Name of the subnetwork. This can be the full path of the subnetwork or just the name. Example1:
44+
* my-subnet Example2: projects/gke-project/regions/us-central1/subnetworks/my-subnet
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.String subnetwork;
49+
50+
/**
51+
* List of secondary ranges names within this subnetwork that can be used for pod IPs. Example1:
52+
* gke-pod-range1 Example2: gke-pod-range1,gke-pod-range2
53+
* @return value or {@code null} for none
54+
*/
55+
public java.util.List<java.lang.String> getPodIpv4RangeNames() {
56+
return podIpv4RangeNames;
57+
}
58+
59+
/**
60+
* List of secondary ranges names within this subnetwork that can be used for pod IPs. Example1:
61+
* gke-pod-range1 Example2: gke-pod-range1,gke-pod-range2
62+
* @param podIpv4RangeNames podIpv4RangeNames or {@code null} for none
63+
*/
64+
public AdditionalIPRangesConfig setPodIpv4RangeNames(java.util.List<java.lang.String> podIpv4RangeNames) {
65+
this.podIpv4RangeNames = podIpv4RangeNames;
66+
return this;
67+
}
68+
69+
/**
70+
* Name of the subnetwork. This can be the full path of the subnetwork or just the name. Example1:
71+
* my-subnet Example2: projects/gke-project/regions/us-central1/subnetworks/my-subnet
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getSubnetwork() {
75+
return subnetwork;
76+
}
77+
78+
/**
79+
* Name of the subnetwork. This can be the full path of the subnetwork or just the name. Example1:
80+
* my-subnet Example2: projects/gke-project/regions/us-central1/subnetworks/my-subnet
81+
* @param subnetwork subnetwork or {@code null} for none
82+
*/
83+
public AdditionalIPRangesConfig setSubnetwork(java.lang.String subnetwork) {
84+
this.subnetwork = subnetwork;
85+
return this;
86+
}
87+
88+
@Override
89+
public AdditionalIPRangesConfig set(String fieldName, Object value) {
90+
return (AdditionalIPRangesConfig) super.set(fieldName, value);
91+
}
92+
93+
@Override
94+
public AdditionalIPRangesConfig clone() {
95+
return (AdditionalIPRangesConfig) super.clone();
96+
}
97+
98+
}

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ public final class AddonsConfig extends com.google.api.client.json.GenericJson {
109109
* Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in
110110
* 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes
111111
* clusters, workloads and applications. For more information, see:
112-
* https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
112+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-
113+
* engine/docs/concepts/dashboards
113114
* The value may be {@code null}.
114115
*/
115116
@com.google.api.client.util.Key
@@ -326,7 +327,8 @@ public AddonsConfig setHttpLoadBalancing(HttpLoadBalancing httpLoadBalancing) {
326327
* Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in
327328
* 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes
328329
* clusters, workloads and applications. For more information, see:
329-
* https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
330+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-
331+
* engine/docs/concepts/dashboards
330332
* @return value or {@code null} for none
331333
*/
332334
public KubernetesDashboard getKubernetesDashboard() {
@@ -337,7 +339,8 @@ public KubernetesDashboard getKubernetesDashboard() {
337339
* Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in
338340
* 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes
339341
* clusters, workloads and applications. For more information, see:
340-
* https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
342+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-
343+
* engine/docs/concepts/dashboards
341344
* @param kubernetesDashboard kubernetesDashboard or {@code null} for none
342345
*/
343346
public AddonsConfig setKubernetesDashboard(KubernetesDashboard kubernetesDashboard) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,30 @@
3131
@SuppressWarnings("javadoc")
3232
public final class AnonymousAuthenticationConfig extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Defines the mode of limiting anonymous access in the cluster.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String mode;
40+
41+
/**
42+
* Defines the mode of limiting anonymous access in the cluster.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getMode() {
46+
return mode;
47+
}
48+
49+
/**
50+
* Defines the mode of limiting anonymous access in the cluster.
51+
* @param mode mode or {@code null} for none
52+
*/
53+
public AnonymousAuthenticationConfig setMode(java.lang.String mode) {
54+
this.mode = mode;
55+
return this;
56+
}
57+
3458
@Override
3559
public AnonymousAuthenticationConfig set(String fieldName, Object value) {
3660
return (AnonymousAuthenticationConfig) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
* AutoIpamConfig contains all information related to Auto IPAM
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 AutoIpamConfig extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public AutoIpamConfig set(String fieldName, Object value) {
35+
return (AutoIpamConfig) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public AutoIpamConfig clone() {
40+
return (AutoIpamConfig) super.clone();
41+
}
42+
43+
}

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

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public final class AutoprovisioningNodePoolDefaults extends com.google.api.clien
3535
* node pool. This should be of the form
3636
* projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For
3737
* more information about protecting resources with Cloud KMS Keys please see:
38-
* https://cloud.google.com/compute/docs/disks/customer-managed-encryption
38+
* https://{$universe.dns_names.final_documentation_domain}/compute/docs/disks/customer-managed-
39+
* encryption
3940
* The value may be {@code null}.
4041
*/
4142
@com.google.api.client.util.Key
@@ -58,8 +59,9 @@ public final class AutoprovisioningNodePoolDefaults extends com.google.api.clien
5859
private java.lang.String diskType;
5960

6061
/**
61-
* The image type to use for NAP created node. Please see https://cloud.google.com/kubernetes-
62-
* engine/docs/concepts/node-images for available image types.
62+
* The image type to use for NAP created node. Please see
63+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-engine/docs/concepts/node-
64+
* images for available image types.
6365
* The value may be {@code null}.
6466
*/
6567
@com.google.api.client.util.Key
@@ -83,11 +85,10 @@ public final class AutoprovisioningNodePoolDefaults extends com.google.api.clien
8385
* Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be
8486
* scheduled on the specified or newer CPU platform. Applicable values are the friendly names of
8587
* CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For
86-
* more information, read [how to specify min CPU
87-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field
88-
* is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-
89-
* platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as
90-
* field value.
88+
* more information, read [how to specify min CPU platform](https://{$universe.dns_names.final_doc
89+
* umentation_domain}/compute/docs/instances/specify-min-cpu-platform). This field is deprecated,
90+
* min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label
91+
* selector on the pod. To unset the min cpu platform field pass "automatic" as field value.
9192
* The value may be {@code null}.
9293
*/
9394
@com.google.api.client.util.Key
@@ -126,7 +127,8 @@ public final class AutoprovisioningNodePoolDefaults extends com.google.api.clien
126127
* node pool. This should be of the form
127128
* projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For
128129
* more information about protecting resources with Cloud KMS Keys please see:
129-
* https://cloud.google.com/compute/docs/disks/customer-managed-encryption
130+
* https://{$universe.dns_names.final_documentation_domain}/compute/docs/disks/customer-managed-
131+
* encryption
130132
* @return value or {@code null} for none
131133
*/
132134
public java.lang.String getBootDiskKmsKey() {
@@ -138,7 +140,8 @@ public java.lang.String getBootDiskKmsKey() {
138140
* node pool. This should be of the form
139141
* projects/[KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]. For
140142
* more information about protecting resources with Cloud KMS Keys please see:
141-
* https://cloud.google.com/compute/docs/disks/customer-managed-encryption
143+
* https://{$universe.dns_names.final_documentation_domain}/compute/docs/disks/customer-managed-
144+
* encryption
142145
* @param bootDiskKmsKey bootDiskKmsKey or {@code null} for none
143146
*/
144147
public AutoprovisioningNodePoolDefaults setBootDiskKmsKey(java.lang.String bootDiskKmsKey) {
@@ -185,17 +188,19 @@ public AutoprovisioningNodePoolDefaults setDiskType(java.lang.String diskType) {
185188
}
186189

187190
/**
188-
* The image type to use for NAP created node. Please see https://cloud.google.com/kubernetes-
189-
* engine/docs/concepts/node-images for available image types.
191+
* The image type to use for NAP created node. Please see
192+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-engine/docs/concepts/node-
193+
* images for available image types.
190194
* @return value or {@code null} for none
191195
*/
192196
public java.lang.String getImageType() {
193197
return imageType;
194198
}
195199

196200
/**
197-
* The image type to use for NAP created node. Please see https://cloud.google.com/kubernetes-
198-
* engine/docs/concepts/node-images for available image types.
201+
* The image type to use for NAP created node. Please see
202+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-engine/docs/concepts/node-
203+
* images for available image types.
199204
* @param imageType imageType or {@code null} for none
200205
*/
201206
public AutoprovisioningNodePoolDefaults setImageType(java.lang.String imageType) {
@@ -241,11 +246,10 @@ public AutoprovisioningNodePoolDefaults setManagement(NodeManagement management)
241246
* Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be
242247
* scheduled on the specified or newer CPU platform. Applicable values are the friendly names of
243248
* CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For
244-
* more information, read [how to specify min CPU
245-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field
246-
* is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-
247-
* platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as
248-
* field value.
249+
* more information, read [how to specify min CPU platform](https://{$universe.dns_names.final_doc
250+
* umentation_domain}/compute/docs/instances/specify-min-cpu-platform). This field is deprecated,
251+
* min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label
252+
* selector on the pod. To unset the min cpu platform field pass "automatic" as field value.
249253
* @return value or {@code null} for none
250254
*/
251255
public java.lang.String getMinCpuPlatform() {
@@ -256,11 +260,10 @@ public java.lang.String getMinCpuPlatform() {
256260
* Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be
257261
* scheduled on the specified or newer CPU platform. Applicable values are the friendly names of
258262
* CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For
259-
* more information, read [how to specify min CPU
260-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field
261-
* is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-
262-
* platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as
263-
* field value.
263+
* more information, read [how to specify min CPU platform](https://{$universe.dns_names.final_doc
264+
* umentation_domain}/compute/docs/instances/specify-min-cpu-platform). This field is deprecated,
265+
* min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label
266+
* selector on the pod. To unset the min cpu platform field pass "automatic" as field value.
264267
* @param minCpuPlatform minCpuPlatform or {@code null} for none
265268
*/
266269
public AutoprovisioningNodePoolDefaults setMinCpuPlatform(java.lang.String minCpuPlatform) {

0 commit comments

Comments
 (0)