Skip to content

Commit 5651ee6

Browse files
1 parent 5f1438c commit 5651ee6

File tree

8 files changed

+236
-6
lines changed

8 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
510510
@com.google.api.client.util.Key
511511
private ParentProductConfig parentProductConfig;
512512

513+
/**
514+
* The config for pod autoscaling.
515+
* The value may be {@code null}.
516+
*/
517+
@com.google.api.client.util.Key
518+
private PodAutoscaling podAutoscaling;
519+
513520
/**
514521
* Configuration for the PodSecurityPolicy feature.
515522
* The value may be {@code null}.
@@ -1845,6 +1852,23 @@ public Cluster setParentProductConfig(ParentProductConfig parentProductConfig) {
18451852
return this;
18461853
}
18471854

1855+
/**
1856+
* The config for pod autoscaling.
1857+
* @return value or {@code null} for none
1858+
*/
1859+
public PodAutoscaling getPodAutoscaling() {
1860+
return podAutoscaling;
1861+
}
1862+
1863+
/**
1864+
* The config for pod autoscaling.
1865+
* @param podAutoscaling podAutoscaling or {@code null} for none
1866+
*/
1867+
public Cluster setPodAutoscaling(PodAutoscaling podAutoscaling) {
1868+
this.podAutoscaling = podAutoscaling;
1869+
return this;
1870+
}
1871+
18481872
/**
18491873
* Configuration for the PodSecurityPolicy feature.
18501874
* @return value or {@code null} for none

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,13 @@ public final class ClusterUpdate extends com.google.api.client.json.GenericJson
176176
@com.google.api.client.util.Key
177177
private java.lang.Boolean desiredEnablePrivateEndpoint;
178178

179+
/**
180+
* The desired enterprise configuration for the cluster.
181+
* The value may be {@code null}.
182+
*/
183+
@com.google.api.client.util.Key
184+
private DesiredEnterpriseConfig desiredEnterpriseConfig;
185+
179186
/**
180187
* The desired fleet configuration for the cluster.
181188
* The value may be {@code null}.
@@ -419,6 +426,13 @@ public final class ClusterUpdate extends com.google.api.client.json.GenericJson
419426
@com.google.api.client.util.Key
420427
private ParentProductConfig desiredParentProductConfig;
421428

429+
/**
430+
* The desired config for pod autoscaling.
431+
* The value may be {@code null}.
432+
*/
433+
@com.google.api.client.util.Key
434+
private PodAutoscaling desiredPodAutoscaling;
435+
422436
/**
423437
* The desired configuration options for the PodSecurityPolicy feature.
424438
* The value may be {@code null}.
@@ -933,6 +947,23 @@ public ClusterUpdate setDesiredEnablePrivateEndpoint(java.lang.Boolean desiredEn
933947
return this;
934948
}
935949

950+
/**
951+
* The desired enterprise configuration for the cluster.
952+
* @return value or {@code null} for none
953+
*/
954+
public DesiredEnterpriseConfig getDesiredEnterpriseConfig() {
955+
return desiredEnterpriseConfig;
956+
}
957+
958+
/**
959+
* The desired enterprise configuration for the cluster.
960+
* @param desiredEnterpriseConfig desiredEnterpriseConfig or {@code null} for none
961+
*/
962+
public ClusterUpdate setDesiredEnterpriseConfig(DesiredEnterpriseConfig desiredEnterpriseConfig) {
963+
this.desiredEnterpriseConfig = desiredEnterpriseConfig;
964+
return this;
965+
}
966+
936967
/**
937968
* The desired fleet configuration for the cluster.
938969
* @return value or {@code null} for none
@@ -1509,6 +1540,23 @@ public ClusterUpdate setDesiredParentProductConfig(ParentProductConfig desiredPa
15091540
return this;
15101541
}
15111542

1543+
/**
1544+
* The desired config for pod autoscaling.
1545+
* @return value or {@code null} for none
1546+
*/
1547+
public PodAutoscaling getDesiredPodAutoscaling() {
1548+
return desiredPodAutoscaling;
1549+
}
1550+
1551+
/**
1552+
* The desired config for pod autoscaling.
1553+
* @param desiredPodAutoscaling desiredPodAutoscaling or {@code null} for none
1554+
*/
1555+
public ClusterUpdate setDesiredPodAutoscaling(PodAutoscaling desiredPodAutoscaling) {
1556+
this.desiredPodAutoscaling = desiredPodAutoscaling;
1557+
return this;
1558+
}
1559+
15121560
/**
15131561
* The desired configuration options for the PodSecurityPolicy feature.
15141562
* @return value or {@code null} for none
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.v1beta1.model;
18+
19+
/**
20+
* DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
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 DesiredEnterpriseConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* desired_tier specifies the desired tier of the cluster.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String desiredTier;
39+
40+
/**
41+
* desired_tier specifies the desired tier of the cluster.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getDesiredTier() {
45+
return desiredTier;
46+
}
47+
48+
/**
49+
* desired_tier specifies the desired tier of the cluster.
50+
* @param desiredTier desiredTier or {@code null} for none
51+
*/
52+
public DesiredEnterpriseConfig setDesiredTier(java.lang.String desiredTier) {
53+
this.desiredTier = desiredTier;
54+
return this;
55+
}
56+
57+
@Override
58+
public DesiredEnterpriseConfig set(String fieldName, Object value) {
59+
return (DesiredEnterpriseConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public DesiredEnterpriseConfig clone() {
64+
return (DesiredEnterpriseConfig) super.clone();
65+
}
66+
67+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class EnterpriseConfig extends com.google.api.client.json.GenericJs
3737
@com.google.api.client.util.Key
3838
private java.lang.String clusterTier;
3939

40+
/**
41+
* desired_tier specifies the desired tier of the cluster.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String desiredTier;
46+
4047
/**
4148
* Output only. cluster_tier indicates the effective tier of the cluster.
4249
* @return value or {@code null} for none
@@ -54,6 +61,23 @@ public EnterpriseConfig setClusterTier(java.lang.String clusterTier) {
5461
return this;
5562
}
5663

64+
/**
65+
* desired_tier specifies the desired tier of the cluster.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getDesiredTier() {
69+
return desiredTier;
70+
}
71+
72+
/**
73+
* desired_tier specifies the desired tier of the cluster.
74+
* @param desiredTier desiredTier or {@code null} for none
75+
*/
76+
public EnterpriseConfig setDesiredTier(java.lang.String desiredTier) {
77+
this.desiredTier = desiredTier;
78+
return this;
79+
}
80+
5781
@Override
5882
public EnterpriseConfig set(String fieldName, Object value) {
5983
return (EnterpriseConfig) super.set(fieldName, value);
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.v1beta1.model;
18+
19+
/**
20+
* PodAutoscaling is used for configuration of parameters for workload autoscaling.
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 PodAutoscaling extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Selected Horizontal Pod Autoscaling profile.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String hpaProfile;
39+
40+
/**
41+
* Selected Horizontal Pod Autoscaling profile.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getHpaProfile() {
45+
return hpaProfile;
46+
}
47+
48+
/**
49+
* Selected Horizontal Pod Autoscaling profile.
50+
* @param hpaProfile hpaProfile or {@code null} for none
51+
*/
52+
public PodAutoscaling setHpaProfile(java.lang.String hpaProfile) {
53+
this.hpaProfile = hpaProfile;
54+
return this;
55+
}
56+
57+
@Override
58+
public PodAutoscaling set(String fieldName, Object value) {
59+
return (PodAutoscaling) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public PodAutoscaling clone() {
64+
return (PodAutoscaling) super.clone();
65+
}
66+
67+
}

clients/google-api-services-container/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-container</artifactId>
11-
<version>v1beta1-rev20241008-2.0.0</version>
12-
<name>Kubernetes Engine API v1beta1-rev20241008-2.0.0</name>
11+
<version>v1beta1-rev20241017-2.0.0</version>
12+
<name>Kubernetes Engine API v1beta1-rev20241017-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)