Skip to content

Commit 39136a8

Browse files
1 parent 89ec427 commit 39136a8

File tree

7 files changed

+502
-6
lines changed

7 files changed

+502
-6
lines changed

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

clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/Release.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,14 @@ public final class Release extends com.google.api.client.json.GenericJson {
202202
@com.google.api.client.util.Key
203203
private java.util.List<Target> targetSnapshots;
204204

205+
/**
206+
* Optional. The tool versions to use for this release and all subsequent operations involving
207+
* this release. If unset, then it will freeze the tool versions at the time of release creation.
208+
* The value may be {@code null}.
209+
*/
210+
@com.google.api.client.util.Key
211+
private ToolVersions toolVersions;
212+
205213
/**
206214
* Output only. Unique identifier of the `Release`.
207215
* The value may be {@code null}.
@@ -592,6 +600,25 @@ public Release setTargetSnapshots(java.util.List<Target> targetSnapshots) {
592600
return this;
593601
}
594602

603+
/**
604+
* Optional. The tool versions to use for this release and all subsequent operations involving
605+
* this release. If unset, then it will freeze the tool versions at the time of release creation.
606+
* @return value or {@code null} for none
607+
*/
608+
public ToolVersions getToolVersions() {
609+
return toolVersions;
610+
}
611+
612+
/**
613+
* Optional. The tool versions to use for this release and all subsequent operations involving
614+
* this release. If unset, then it will freeze the tool versions at the time of release creation.
615+
* @param toolVersions toolVersions or {@code null} for none
616+
*/
617+
public Release setToolVersions(ToolVersions toolVersions) {
618+
this.toolVersions = toolVersions;
619+
return this;
620+
}
621+
595622
/**
596623
* Output only. Unique identifier of the `Release`.
597624
* @return value or {@code null} for none

clients/google-api-services-clouddeploy/v1/2.0.0/com/google/api/services/clouddeploy/v1/model/ReleaseCondition.java

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,41 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ReleaseCondition extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. Details around the support state of the release's Docker version.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private ToolVersionSupportedCondition dockerVersionSupportedCondition;
38+
39+
/**
40+
* Output only. Details around the support state of the release's Helm version.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private ToolVersionSupportedCondition helmVersionSupportedCondition;
45+
46+
/**
47+
* Output only. Details around the support state of the release's Kpt version.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private ToolVersionSupportedCondition kptVersionSupportedCondition;
52+
53+
/**
54+
* Output only. Details around the support state of the release's Kubectl version.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private ToolVersionSupportedCondition kubectlVersionSupportedCondition;
59+
60+
/**
61+
* Output only. Details around the support state of the release's Kustomize version.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private ToolVersionSupportedCondition kustomizeVersionSupportedCondition;
66+
3267
/**
3368
* Details around the Releases's overall status.
3469
* The value may be {@code null}.
@@ -43,6 +78,98 @@ public final class ReleaseCondition extends com.google.api.client.json.GenericJs
4378
@com.google.api.client.util.Key
4479
private SkaffoldSupportedCondition skaffoldSupportedCondition;
4580

81+
/**
82+
* Output only. Details around the support state of the release's Skaffold version.
83+
* The value may be {@code null}.
84+
*/
85+
@com.google.api.client.util.Key
86+
private ToolVersionSupportedCondition skaffoldVersionSupportedCondition;
87+
88+
/**
89+
* Output only. Details around the support state of the release's Docker version.
90+
* @return value or {@code null} for none
91+
*/
92+
public ToolVersionSupportedCondition getDockerVersionSupportedCondition() {
93+
return dockerVersionSupportedCondition;
94+
}
95+
96+
/**
97+
* Output only. Details around the support state of the release's Docker version.
98+
* @param dockerVersionSupportedCondition dockerVersionSupportedCondition or {@code null} for none
99+
*/
100+
public ReleaseCondition setDockerVersionSupportedCondition(ToolVersionSupportedCondition dockerVersionSupportedCondition) {
101+
this.dockerVersionSupportedCondition = dockerVersionSupportedCondition;
102+
return this;
103+
}
104+
105+
/**
106+
* Output only. Details around the support state of the release's Helm version.
107+
* @return value or {@code null} for none
108+
*/
109+
public ToolVersionSupportedCondition getHelmVersionSupportedCondition() {
110+
return helmVersionSupportedCondition;
111+
}
112+
113+
/**
114+
* Output only. Details around the support state of the release's Helm version.
115+
* @param helmVersionSupportedCondition helmVersionSupportedCondition or {@code null} for none
116+
*/
117+
public ReleaseCondition setHelmVersionSupportedCondition(ToolVersionSupportedCondition helmVersionSupportedCondition) {
118+
this.helmVersionSupportedCondition = helmVersionSupportedCondition;
119+
return this;
120+
}
121+
122+
/**
123+
* Output only. Details around the support state of the release's Kpt version.
124+
* @return value or {@code null} for none
125+
*/
126+
public ToolVersionSupportedCondition getKptVersionSupportedCondition() {
127+
return kptVersionSupportedCondition;
128+
}
129+
130+
/**
131+
* Output only. Details around the support state of the release's Kpt version.
132+
* @param kptVersionSupportedCondition kptVersionSupportedCondition or {@code null} for none
133+
*/
134+
public ReleaseCondition setKptVersionSupportedCondition(ToolVersionSupportedCondition kptVersionSupportedCondition) {
135+
this.kptVersionSupportedCondition = kptVersionSupportedCondition;
136+
return this;
137+
}
138+
139+
/**
140+
* Output only. Details around the support state of the release's Kubectl version.
141+
* @return value or {@code null} for none
142+
*/
143+
public ToolVersionSupportedCondition getKubectlVersionSupportedCondition() {
144+
return kubectlVersionSupportedCondition;
145+
}
146+
147+
/**
148+
* Output only. Details around the support state of the release's Kubectl version.
149+
* @param kubectlVersionSupportedCondition kubectlVersionSupportedCondition or {@code null} for none
150+
*/
151+
public ReleaseCondition setKubectlVersionSupportedCondition(ToolVersionSupportedCondition kubectlVersionSupportedCondition) {
152+
this.kubectlVersionSupportedCondition = kubectlVersionSupportedCondition;
153+
return this;
154+
}
155+
156+
/**
157+
* Output only. Details around the support state of the release's Kustomize version.
158+
* @return value or {@code null} for none
159+
*/
160+
public ToolVersionSupportedCondition getKustomizeVersionSupportedCondition() {
161+
return kustomizeVersionSupportedCondition;
162+
}
163+
164+
/**
165+
* Output only. Details around the support state of the release's Kustomize version.
166+
* @param kustomizeVersionSupportedCondition kustomizeVersionSupportedCondition or {@code null} for none
167+
*/
168+
public ReleaseCondition setKustomizeVersionSupportedCondition(ToolVersionSupportedCondition kustomizeVersionSupportedCondition) {
169+
this.kustomizeVersionSupportedCondition = kustomizeVersionSupportedCondition;
170+
return this;
171+
}
172+
46173
/**
47174
* Details around the Releases's overall status.
48175
* @return value or {@code null} for none
@@ -77,6 +204,23 @@ public ReleaseCondition setSkaffoldSupportedCondition(SkaffoldSupportedCondition
77204
return this;
78205
}
79206

207+
/**
208+
* Output only. Details around the support state of the release's Skaffold version.
209+
* @return value or {@code null} for none
210+
*/
211+
public ToolVersionSupportedCondition getSkaffoldVersionSupportedCondition() {
212+
return skaffoldVersionSupportedCondition;
213+
}
214+
215+
/**
216+
* Output only. Details around the support state of the release's Skaffold version.
217+
* @param skaffoldVersionSupportedCondition skaffoldVersionSupportedCondition or {@code null} for none
218+
*/
219+
public ReleaseCondition setSkaffoldVersionSupportedCondition(ToolVersionSupportedCondition skaffoldVersionSupportedCondition) {
220+
this.skaffoldVersionSupportedCondition = skaffoldVersionSupportedCondition;
221+
return this;
222+
}
223+
80224
@Override
81225
public ReleaseCondition set(String fieldName, Object value) {
82226
return (ReleaseCondition) super.set(fieldName, value);
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.clouddeploy.v1.model;
18+
19+
/**
20+
* ToolVersionSupportedCondition contains information about when support for the release's version
21+
* of a Tool ends.
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 Cloud Deploy API. For a detailed explanation 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 ToolVersionSupportedCondition extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The time at which this release's version of the Tool will enter maintenance mode.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String maintenanceModeTime;
39+
40+
/**
41+
* Output only. True if the version of Tool used by this release is supported.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean status;
46+
47+
/**
48+
* Output only. The time at which this release's version of the Tool will no longer be supported.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private String supportExpirationTime;
53+
54+
/**
55+
* Output only. The Tool support state for this release's version of the Tool.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String toolVersionSupportState;
60+
61+
/**
62+
* Output only. The time at which this release's version of the Tool will enter maintenance mode.
63+
* @return value or {@code null} for none
64+
*/
65+
public String getMaintenanceModeTime() {
66+
return maintenanceModeTime;
67+
}
68+
69+
/**
70+
* Output only. The time at which this release's version of the Tool will enter maintenance mode.
71+
* @param maintenanceModeTime maintenanceModeTime or {@code null} for none
72+
*/
73+
public ToolVersionSupportedCondition setMaintenanceModeTime(String maintenanceModeTime) {
74+
this.maintenanceModeTime = maintenanceModeTime;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. True if the version of Tool used by this release is supported.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.Boolean getStatus() {
83+
return status;
84+
}
85+
86+
/**
87+
* Output only. True if the version of Tool used by this release is supported.
88+
* @param status status or {@code null} for none
89+
*/
90+
public ToolVersionSupportedCondition setStatus(java.lang.Boolean status) {
91+
this.status = status;
92+
return this;
93+
}
94+
95+
/**
96+
* Output only. The time at which this release's version of the Tool will no longer be supported.
97+
* @return value or {@code null} for none
98+
*/
99+
public String getSupportExpirationTime() {
100+
return supportExpirationTime;
101+
}
102+
103+
/**
104+
* Output only. The time at which this release's version of the Tool will no longer be supported.
105+
* @param supportExpirationTime supportExpirationTime or {@code null} for none
106+
*/
107+
public ToolVersionSupportedCondition setSupportExpirationTime(String supportExpirationTime) {
108+
this.supportExpirationTime = supportExpirationTime;
109+
return this;
110+
}
111+
112+
/**
113+
* Output only. The Tool support state for this release's version of the Tool.
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.String getToolVersionSupportState() {
117+
return toolVersionSupportState;
118+
}
119+
120+
/**
121+
* Output only. The Tool support state for this release's version of the Tool.
122+
* @param toolVersionSupportState toolVersionSupportState or {@code null} for none
123+
*/
124+
public ToolVersionSupportedCondition setToolVersionSupportState(java.lang.String toolVersionSupportState) {
125+
this.toolVersionSupportState = toolVersionSupportState;
126+
return this;
127+
}
128+
129+
@Override
130+
public ToolVersionSupportedCondition set(String fieldName, Object value) {
131+
return (ToolVersionSupportedCondition) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public ToolVersionSupportedCondition clone() {
136+
return (ToolVersionSupportedCondition) super.clone();
137+
}
138+
139+
}

0 commit comments

Comments
 (0)