Skip to content

Commit f979926

Browse files
1 parent 18f9d71 commit f979926

File tree

11 files changed

+294
-21
lines changed

11 files changed

+294
-21
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-rev20240618-2.0.0</version>
25+
<version>v1-rev20240619-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-rev20240618-2.0.0'
38+
implementation 'com.google.apis:google-api-services-container:v1-rev20240619-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 NetworkPolicyConfig networkPolicyConfig;
118118

119+
/**
120+
* Optional. Configuration for Ray Operator addon.
121+
* The value may be {@code null}.
122+
*/
123+
@com.google.api.client.util.Key
124+
private RayOperatorConfig rayOperatorConfig;
125+
119126
/**
120127
* Optional. Configuration for the StatefulHA add-on.
121128
* The value may be {@code null}.
@@ -326,6 +333,23 @@ public AddonsConfig setNetworkPolicyConfig(NetworkPolicyConfig networkPolicyConf
326333
return this;
327334
}
328335

336+
/**
337+
* Optional. Configuration for Ray Operator addon.
338+
* @return value or {@code null} for none
339+
*/
340+
public RayOperatorConfig getRayOperatorConfig() {
341+
return rayOperatorConfig;
342+
}
343+
344+
/**
345+
* Optional. Configuration for Ray Operator addon.
346+
* @param rayOperatorConfig rayOperatorConfig or {@code null} for none
347+
*/
348+
public AddonsConfig setRayOperatorConfig(RayOperatorConfig rayOperatorConfig) {
349+
this.rayOperatorConfig = rayOperatorConfig;
350+
return this;
351+
}
352+
329353
/**
330354
* Optional. Configuration for the StatefulHA add-on.
331355
* @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.model;
18+
19+
/**
20+
* RayClusterLoggingConfig specifies configuration of Ray logging.
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 RayClusterLoggingConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Enable log collection for Ray clusters.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Enable log collection for Ray clusters.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getEnabled() {
45+
return enabled;
46+
}
47+
48+
/**
49+
* Enable log collection for Ray clusters.
50+
* @param enabled enabled or {@code null} for none
51+
*/
52+
public RayClusterLoggingConfig setEnabled(java.lang.Boolean enabled) {
53+
this.enabled = enabled;
54+
return this;
55+
}
56+
57+
@Override
58+
public RayClusterLoggingConfig set(String fieldName, Object value) {
59+
return (RayClusterLoggingConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public RayClusterLoggingConfig clone() {
64+
return (RayClusterLoggingConfig) super.clone();
65+
}
66+
67+
}
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+
* RayClusterMonitoringConfig specifies monitoring configuration for Ray clusters.
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 RayClusterMonitoringConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Enable metrics collection for Ray clusters.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Enable metrics collection for Ray clusters.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.Boolean getEnabled() {
45+
return enabled;
46+
}
47+
48+
/**
49+
* Enable metrics collection for Ray clusters.
50+
* @param enabled enabled or {@code null} for none
51+
*/
52+
public RayClusterMonitoringConfig setEnabled(java.lang.Boolean enabled) {
53+
this.enabled = enabled;
54+
return this;
55+
}
56+
57+
@Override
58+
public RayClusterMonitoringConfig set(String fieldName, Object value) {
59+
return (RayClusterMonitoringConfig) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public RayClusterMonitoringConfig clone() {
64+
return (RayClusterMonitoringConfig) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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+
* Configuration options for the Ray Operator add-on.
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 RayOperatorConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Whether the Ray Operator addon is enabled for this cluster.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean enabled;
39+
40+
/**
41+
* Optional. Logging configuration for Ray clusters.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private RayClusterLoggingConfig rayClusterLoggingConfig;
46+
47+
/**
48+
* Optional. Monitoring configuration for Ray clusters.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private RayClusterMonitoringConfig rayClusterMonitoringConfig;
53+
54+
/**
55+
* Whether the Ray Operator addon is enabled for this cluster.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.Boolean getEnabled() {
59+
return enabled;
60+
}
61+
62+
/**
63+
* Whether the Ray Operator addon is enabled for this cluster.
64+
* @param enabled enabled or {@code null} for none
65+
*/
66+
public RayOperatorConfig setEnabled(java.lang.Boolean enabled) {
67+
this.enabled = enabled;
68+
return this;
69+
}
70+
71+
/**
72+
* Optional. Logging configuration for Ray clusters.
73+
* @return value or {@code null} for none
74+
*/
75+
public RayClusterLoggingConfig getRayClusterLoggingConfig() {
76+
return rayClusterLoggingConfig;
77+
}
78+
79+
/**
80+
* Optional. Logging configuration for Ray clusters.
81+
* @param rayClusterLoggingConfig rayClusterLoggingConfig or {@code null} for none
82+
*/
83+
public RayOperatorConfig setRayClusterLoggingConfig(RayClusterLoggingConfig rayClusterLoggingConfig) {
84+
this.rayClusterLoggingConfig = rayClusterLoggingConfig;
85+
return this;
86+
}
87+
88+
/**
89+
* Optional. Monitoring configuration for Ray clusters.
90+
* @return value or {@code null} for none
91+
*/
92+
public RayClusterMonitoringConfig getRayClusterMonitoringConfig() {
93+
return rayClusterMonitoringConfig;
94+
}
95+
96+
/**
97+
* Optional. Monitoring configuration for Ray clusters.
98+
* @param rayClusterMonitoringConfig rayClusterMonitoringConfig or {@code null} for none
99+
*/
100+
public RayOperatorConfig setRayClusterMonitoringConfig(RayClusterMonitoringConfig rayClusterMonitoringConfig) {
101+
this.rayClusterMonitoringConfig = rayClusterMonitoringConfig;
102+
return this;
103+
}
104+
105+
@Override
106+
public RayOperatorConfig set(String fieldName, Object value) {
107+
return (RayOperatorConfig) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public RayOperatorConfig clone() {
112+
return (RayOperatorConfig) super.clone();
113+
}
114+
115+
}

clients/google-api-services-container/v1/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>v1-rev20240618-2.0.0</version>
12-
<name>Kubernetes Engine API v1-rev20240618-2.0.0</name>
11+
<version>v1-rev20240619-2.0.0</version>
12+
<name>Kubernetes Engine API v1-rev20240619-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

0 commit comments

Comments
 (0)