Skip to content

Commit 5c18c92

Browse files
1 parent 338d1a7 commit 5c18c92

File tree

6 files changed

+195
-6
lines changed

6 files changed

+195
-6
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-rev20250218-2.0.0</version>
25+
<version>v1-rev20250410-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-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vmwareengine:v1-rev20250410-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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,29 @@ public List setName(java.lang.String name) {
612612
return this;
613613
}
614614

615+
/**
616+
* Optional. A list of extra location types that should be used as conditions for
617+
* controlling the visibility of the locations.
618+
*/
619+
@com.google.api.client.util.Key
620+
private java.util.List<java.lang.String> extraLocationTypes;
621+
622+
/** Optional. A list of extra location types that should be used as conditions for controlling the
623+
visibility of the locations.
624+
*/
625+
public java.util.List<java.lang.String> getExtraLocationTypes() {
626+
return extraLocationTypes;
627+
}
628+
629+
/**
630+
* Optional. A list of extra location types that should be used as conditions for
631+
* controlling the visibility of the locations.
632+
*/
633+
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
634+
this.extraLocationTypes = extraLocationTypes;
635+
return this;
636+
}
637+
615638
/**
616639
* A filter to narrow down results to a preferred subset. The filtering language accepts
617640
* strings like `"displayName=tokyo"`, and is documented in more detail in

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
@SuppressWarnings("javadoc")
3131
public final class Constraints extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. Output Only. A list of intervals in which maintenance windows are not allowed. Any
35+
* time window that overlaps with any of these intervals will be considered invalid.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<WeeklyTimeInterval> disallowedIntervals;
40+
3341
/**
3442
* Output only. Minimum number of hours must be allotted for the upgrade activities for each
3543
* selected day. This is a minimum; the upgrade schedule can allot more hours for the given day.
@@ -54,6 +62,25 @@ public final class Constraints extends com.google.api.client.json.GenericJson {
5462
@com.google.api.client.util.Key
5563
private Interval rescheduleDateRange;
5664

65+
/**
66+
* Output only. Output Only. A list of intervals in which maintenance windows are not allowed. Any
67+
* time window that overlaps with any of these intervals will be considered invalid.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.util.List<WeeklyTimeInterval> getDisallowedIntervals() {
71+
return disallowedIntervals;
72+
}
73+
74+
/**
75+
* Output only. Output Only. A list of intervals in which maintenance windows are not allowed. Any
76+
* time window that overlaps with any of these intervals will be considered invalid.
77+
* @param disallowedIntervals disallowedIntervals or {@code null} for none
78+
*/
79+
public Constraints setDisallowedIntervals(java.util.List<WeeklyTimeInterval> disallowedIntervals) {
80+
this.disallowedIntervals = disallowedIntervals;
81+
return this;
82+
}
83+
5784
/**
5885
* Output only. Minimum number of hours must be allotted for the upgrade activities for each
5986
* selected day. This is a minimum; the upgrade schedule can allot more hours for the given day.
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.vmwareengine.v1.model;
18+
19+
/**
20+
* Represents a time interval, spanning across days of the week. Until local timezones are
21+
* supported, this interval is in UTC.
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 VMware Engine 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 WeeklyTimeInterval extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The day on which the interval ends. Can be same as start day.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String endDay;
39+
40+
/**
41+
* Output only. The time on the end day at which the interval ends.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private TimeOfDay endTime;
46+
47+
/**
48+
* Output only. The day on which the interval starts.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String startDay;
53+
54+
/**
55+
* Output only. The time on the start day at which the interval starts.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private TimeOfDay startTime;
60+
61+
/**
62+
* Output only. The day on which the interval ends. Can be same as start day.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.String getEndDay() {
66+
return endDay;
67+
}
68+
69+
/**
70+
* Output only. The day on which the interval ends. Can be same as start day.
71+
* @param endDay endDay or {@code null} for none
72+
*/
73+
public WeeklyTimeInterval setEndDay(java.lang.String endDay) {
74+
this.endDay = endDay;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. The time on the end day at which the interval ends.
80+
* @return value or {@code null} for none
81+
*/
82+
public TimeOfDay getEndTime() {
83+
return endTime;
84+
}
85+
86+
/**
87+
* Output only. The time on the end day at which the interval ends.
88+
* @param endTime endTime or {@code null} for none
89+
*/
90+
public WeeklyTimeInterval setEndTime(TimeOfDay endTime) {
91+
this.endTime = endTime;
92+
return this;
93+
}
94+
95+
/**
96+
* Output only. The day on which the interval starts.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getStartDay() {
100+
return startDay;
101+
}
102+
103+
/**
104+
* Output only. The day on which the interval starts.
105+
* @param startDay startDay or {@code null} for none
106+
*/
107+
public WeeklyTimeInterval setStartDay(java.lang.String startDay) {
108+
this.startDay = startDay;
109+
return this;
110+
}
111+
112+
/**
113+
* Output only. The time on the start day at which the interval starts.
114+
* @return value or {@code null} for none
115+
*/
116+
public TimeOfDay getStartTime() {
117+
return startTime;
118+
}
119+
120+
/**
121+
* Output only. The time on the start day at which the interval starts.
122+
* @param startTime startTime or {@code null} for none
123+
*/
124+
public WeeklyTimeInterval setStartTime(TimeOfDay startTime) {
125+
this.startTime = startTime;
126+
return this;
127+
}
128+
129+
@Override
130+
public WeeklyTimeInterval set(String fieldName, Object value) {
131+
return (WeeklyTimeInterval) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public WeeklyTimeInterval clone() {
136+
return (WeeklyTimeInterval) super.clone();
137+
}
138+
139+
}

clients/google-api-services-vmwareengine/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-vmwareengine</artifactId>
11-
<version>v1-rev20250218-2.0.0</version>
12-
<name>VMware Engine API v1-rev20250218-2.0.0</name>
11+
<version>v1-rev20250410-2.0.0</version>
12+
<name>VMware Engine API v1-rev20250410-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)