Skip to content

Commit 8213414

Browse files
1 parent 0ed7f91 commit 8213414

16 files changed

+2810
-25
lines changed

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

clients/google-api-services-vmwareengine/v1/2.0.0/com/google/api/services/vmwareengine/v1/VMwareEngine.java

Lines changed: 1406 additions & 16 deletions
Large diffs are not rendered by default.

clients/google-api-services-vmwareengine/v1/2.0.0/com/google/api/services/vmwareengine/v1/model/Cluster.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
4343
@com.google.api.client.util.Key
4444
private String createTime;
4545

46+
/**
47+
* Output only. Configuration of a mounted datastore.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<DatastoreMountConfig> datastoreMountConfig;
52+
4653
/**
4754
* Output only. True if the cluster is a management cluster; false otherwise. There can only be
4855
* one management cluster in a private cloud and it has to be the first one.
@@ -132,6 +139,23 @@ public Cluster setCreateTime(String createTime) {
132139
return this;
133140
}
134141

142+
/**
143+
* Output only. Configuration of a mounted datastore.
144+
* @return value or {@code null} for none
145+
*/
146+
public java.util.List<DatastoreMountConfig> getDatastoreMountConfig() {
147+
return datastoreMountConfig;
148+
}
149+
150+
/**
151+
* Output only. Configuration of a mounted datastore.
152+
* @param datastoreMountConfig datastoreMountConfig or {@code null} for none
153+
*/
154+
public Cluster setDatastoreMountConfig(java.util.List<DatastoreMountConfig> datastoreMountConfig) {
155+
this.datastoreMountConfig = datastoreMountConfig;
156+
return this;
157+
}
158+
135159
/**
136160
* Output only. True if the cluster is a management cluster; false otherwise. There can only be
137161
* one management cluster in a private cloud and it has to be the first one.
Lines changed: 270 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
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.vmwareengine.v1.model;
18+
19+
/**
20+
* Represents a datastore resource.
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 VMware Engine API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class Datastore extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Clusters to which the datastore is attached.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> clusters;
38+
39+
/**
40+
* Output only. Creation time of this resource.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String createTime;
45+
46+
/**
47+
* Optional. User-provided description for this datastore
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String description;
52+
53+
/**
54+
* Optional. Checksum that may be sent on update and delete requests to ensure that the user-
55+
* provided value is up to date before the server processes a request. The server computes
56+
* checksums based on the value of other fields in the request.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String etag;
61+
62+
/**
63+
* Output only. Identifier. The resource name of this datastore. Resource names are schemeless
64+
* URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For
65+
* example: `projects/my-project/locations/us-central1/datastores/datastore`
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private java.lang.String name;
70+
71+
/**
72+
* Required. Settings for the NFS datastore.
73+
* The value may be {@code null}.
74+
*/
75+
@com.google.api.client.util.Key
76+
private NfsDatastore nfsDatastore;
77+
78+
/**
79+
* Output only. The state of the Datastore.
80+
* The value may be {@code null}.
81+
*/
82+
@com.google.api.client.util.Key
83+
private java.lang.String state;
84+
85+
/**
86+
* Output only. System-generated unique identifier for the resource.
87+
* The value may be {@code null}.
88+
*/
89+
@com.google.api.client.util.Key
90+
private java.lang.String uid;
91+
92+
/**
93+
* Output only. Last update time of this resource.
94+
* The value may be {@code null}.
95+
*/
96+
@com.google.api.client.util.Key
97+
private String updateTime;
98+
99+
/**
100+
* Output only. Clusters to which the datastore is attached.
101+
* @return value or {@code null} for none
102+
*/
103+
public java.util.List<java.lang.String> getClusters() {
104+
return clusters;
105+
}
106+
107+
/**
108+
* Output only. Clusters to which the datastore is attached.
109+
* @param clusters clusters or {@code null} for none
110+
*/
111+
public Datastore setClusters(java.util.List<java.lang.String> clusters) {
112+
this.clusters = clusters;
113+
return this;
114+
}
115+
116+
/**
117+
* Output only. Creation time of this resource.
118+
* @return value or {@code null} for none
119+
*/
120+
public String getCreateTime() {
121+
return createTime;
122+
}
123+
124+
/**
125+
* Output only. Creation time of this resource.
126+
* @param createTime createTime or {@code null} for none
127+
*/
128+
public Datastore setCreateTime(String createTime) {
129+
this.createTime = createTime;
130+
return this;
131+
}
132+
133+
/**
134+
* Optional. User-provided description for this datastore
135+
* @return value or {@code null} for none
136+
*/
137+
public java.lang.String getDescription() {
138+
return description;
139+
}
140+
141+
/**
142+
* Optional. User-provided description for this datastore
143+
* @param description description or {@code null} for none
144+
*/
145+
public Datastore setDescription(java.lang.String description) {
146+
this.description = description;
147+
return this;
148+
}
149+
150+
/**
151+
* Optional. Checksum that may be sent on update and delete requests to ensure that the user-
152+
* provided value is up to date before the server processes a request. The server computes
153+
* checksums based on the value of other fields in the request.
154+
* @return value or {@code null} for none
155+
*/
156+
public java.lang.String getEtag() {
157+
return etag;
158+
}
159+
160+
/**
161+
* Optional. Checksum that may be sent on update and delete requests to ensure that the user-
162+
* provided value is up to date before the server processes a request. The server computes
163+
* checksums based on the value of other fields in the request.
164+
* @param etag etag or {@code null} for none
165+
*/
166+
public Datastore setEtag(java.lang.String etag) {
167+
this.etag = etag;
168+
return this;
169+
}
170+
171+
/**
172+
* Output only. Identifier. The resource name of this datastore. Resource names are schemeless
173+
* URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For
174+
* example: `projects/my-project/locations/us-central1/datastores/datastore`
175+
* @return value or {@code null} for none
176+
*/
177+
public java.lang.String getName() {
178+
return name;
179+
}
180+
181+
/**
182+
* Output only. Identifier. The resource name of this datastore. Resource names are schemeless
183+
* URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For
184+
* example: `projects/my-project/locations/us-central1/datastores/datastore`
185+
* @param name name or {@code null} for none
186+
*/
187+
public Datastore setName(java.lang.String name) {
188+
this.name = name;
189+
return this;
190+
}
191+
192+
/**
193+
* Required. Settings for the NFS datastore.
194+
* @return value or {@code null} for none
195+
*/
196+
public NfsDatastore getNfsDatastore() {
197+
return nfsDatastore;
198+
}
199+
200+
/**
201+
* Required. Settings for the NFS datastore.
202+
* @param nfsDatastore nfsDatastore or {@code null} for none
203+
*/
204+
public Datastore setNfsDatastore(NfsDatastore nfsDatastore) {
205+
this.nfsDatastore = nfsDatastore;
206+
return this;
207+
}
208+
209+
/**
210+
* Output only. The state of the Datastore.
211+
* @return value or {@code null} for none
212+
*/
213+
public java.lang.String getState() {
214+
return state;
215+
}
216+
217+
/**
218+
* Output only. The state of the Datastore.
219+
* @param state state or {@code null} for none
220+
*/
221+
public Datastore setState(java.lang.String state) {
222+
this.state = state;
223+
return this;
224+
}
225+
226+
/**
227+
* Output only. System-generated unique identifier for the resource.
228+
* @return value or {@code null} for none
229+
*/
230+
public java.lang.String getUid() {
231+
return uid;
232+
}
233+
234+
/**
235+
* Output only. System-generated unique identifier for the resource.
236+
* @param uid uid or {@code null} for none
237+
*/
238+
public Datastore setUid(java.lang.String uid) {
239+
this.uid = uid;
240+
return this;
241+
}
242+
243+
/**
244+
* Output only. Last update time of this resource.
245+
* @return value or {@code null} for none
246+
*/
247+
public String getUpdateTime() {
248+
return updateTime;
249+
}
250+
251+
/**
252+
* Output only. Last update time of this resource.
253+
* @param updateTime updateTime or {@code null} for none
254+
*/
255+
public Datastore setUpdateTime(String updateTime) {
256+
this.updateTime = updateTime;
257+
return this;
258+
}
259+
260+
@Override
261+
public Datastore set(String fieldName, Object value) {
262+
return (Datastore) super.set(fieldName, value);
263+
}
264+
265+
@Override
266+
public Datastore clone() {
267+
return (Datastore) super.clone();
268+
}
269+
270+
}

0 commit comments

Comments
 (0)