Skip to content

Commit ad74159

Browse files
1 parent 9d89124 commit ad74159

Some content is hidden

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

51 files changed

+3086
-2271
lines changed

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

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

Lines changed: 1592 additions & 1416 deletions
Large diffs are not rendered by default.

clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/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
@@ -93,7 +93,7 @@ public AcceleratorConfig setAcceleratorCount(java.lang.Long acceleratorCount) {
9393

9494
/**
9595
* The accelerator type resource name. List of supported accelerators
96-
* [here](https://cloud.google.com/compute/docs/gpus)
96+
* [here](https://{$universe.dns_names.final_documentation_domain}/compute/docs/gpus)
9797
* @return value or {@code null} for none
9898
*/
9999
public java.lang.String getAcceleratorType() {
@@ -102,7 +102,7 @@ public java.lang.String getAcceleratorType() {
102102

103103
/**
104104
* The accelerator type resource name. List of supported accelerators
105-
* [here](https://cloud.google.com/compute/docs/gpus)
105+
* [here](https://{$universe.dns_names.final_documentation_domain}/compute/docs/gpus)
106106
* @param acceleratorType acceleratorType or {@code null} for none
107107
*/
108108
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.v1beta1.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/v1beta1/2.0.0/com/google/api/services/container/v1beta1/model/AddonsConfig.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ public final class AddonsConfig extends com.google.api.client.json.GenericJson {
124124
* Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in
125125
* 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes
126126
* clusters, workloads and applications. For more information, see:
127-
* https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
127+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-
128+
* engine/docs/concepts/dashboards
128129
* The value may be {@code null}.
129130
*/
130131
@com.google.api.client.util.Key
@@ -377,7 +378,8 @@ public AddonsConfig setKalmConfig(KalmConfig kalmConfig) {
377378
* Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in
378379
* 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes
379380
* clusters, workloads and applications. For more information, see:
380-
* https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
381+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-
382+
* engine/docs/concepts/dashboards
381383
* @return value or {@code null} for none
382384
*/
383385
public KubernetesDashboard getKubernetesDashboard() {
@@ -388,7 +390,8 @@ public KubernetesDashboard getKubernetesDashboard() {
388390
* Configuration for the Kubernetes Dashboard. This addon is deprecated, and will be disabled in
389391
* 1.15. It is recommended to use the Cloud Console to manage and monitor your Kubernetes
390392
* clusters, workloads and applications. For more information, see:
391-
* https://cloud.google.com/kubernetes-engine/docs/concepts/dashboards
393+
* https://{$universe.dns_names.final_documentation_domain}/kubernetes-
394+
* engine/docs/concepts/dashboards
392395
* @param kubernetesDashboard kubernetesDashboard or {@code null} for none
393396
*/
394397
public AddonsConfig setKubernetesDashboard(KubernetesDashboard kubernetesDashboard) {

clients/google-api-services-container/v1beta1/2.0.0/com/google/api/services/container/v1beta1/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.v1beta1.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+
}

0 commit comments

Comments
 (0)