Skip to content

Commit 60571d8

Browse files
1 parent 34449d0 commit 60571d8

File tree

12 files changed

+289
-21
lines changed

12 files changed

+289
-21
lines changed

clients/google-api-services-compute/beta/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-compute</artifactId>
25-
<version>beta-rev20241015-2.0.0</version>
25+
<version>beta-rev20241021-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-compute:beta-rev20241015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-compute:beta-rev20241021-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/Compute.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60741,7 +60741,8 @@ public GetSerialPortOutput setPort(java.lang.Integer port) {
6074160741
* the adjusted start position is returned as the `start` property value. You can also provide
6074260742
* a negative start position, which translates to the most recent number of bytes written to
6074360743
* the serial port. For example, -3 is interpreted as the most recent 3 bytes written to the
60744-
* serial console.
60744+
* serial console. Note that the negative start is bounded by the retained buffer size, and
60745+
* the returned serial console output will not exceed the max buffer size.
6074560746
*/
6074660747
@com.google.api.client.util.Key
6074760748
private java.lang.Long start;
@@ -60754,7 +60755,9 @@ amount of serial console output exceeds the size of the buffer (1 MB), the oldes
6075460755
the start position is adjusted to the oldest output still available, and the adjusted start
6075560756
position is returned as the `start` property value. You can also provide a negative start position,
6075660757
which translates to the most recent number of bytes written to the serial port. For example, -3 is
60757-
interpreted as the most recent 3 bytes written to the serial console.
60758+
interpreted as the most recent 3 bytes written to the serial console. Note that the negative start
60759+
is bounded by the retained buffer size, and the returned serial console output will not exceed the
60760+
max buffer size.
6075860761
*/
6075960762
public java.lang.Long getStart() {
6076060763
return start;
@@ -60770,7 +60773,8 @@ public java.lang.Long getStart() {
6077060773
* the adjusted start position is returned as the `start` property value. You can also provide
6077160774
* a negative start position, which translates to the most recent number of bytes written to
6077260775
* the serial port. For example, -3 is interpreted as the most recent 3 bytes written to the
60773-
* serial console.
60776+
* serial console. Note that the negative start is bounded by the retained buffer size, and
60777+
* the returned serial console output will not exceed the max buffer size.
6077460778
*/
6077560779
public GetSerialPortOutput setStart(java.lang.Long start) {
6077660780
this.start = start;

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/model/BackendBucketCdnPolicy.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ public final class BackendBucketCdnPolicy extends com.google.api.client.json.Gen
5555
* private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static
5656
* content, including common image formats, media (video and audio), and web assets (JavaScript
5757
* and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content
58-
* (including HTML), will not be cached.
58+
* (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it
59+
* defaults to CACHE_ALL_STATIC.
5960
* The value may be {@code null}.
6061
*/
6162
@com.google.api.client.util.Key
@@ -216,7 +217,8 @@ public BackendBucketCdnPolicy setCacheKeyPolicy(BackendBucketCdnPolicyCacheKeyPo
216217
* private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static
217218
* content, including common image formats, media (video and audio), and web assets (JavaScript
218219
* and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content
219-
* (including HTML), will not be cached.
220+
* (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it
221+
* defaults to CACHE_ALL_STATIC.
220222
* @return value or {@code null} for none
221223
*/
222224
public java.lang.String getCacheMode() {
@@ -233,7 +235,8 @@ public java.lang.String getCacheMode() {
233235
* private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static
234236
* content, including common image formats, media (video and audio), and web assets (JavaScript
235237
* and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content
236-
* (including HTML), will not be cached.
238+
* (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it
239+
* defaults to CACHE_ALL_STATIC.
237240
* @param cacheMode cacheMode or {@code null} for none
238241
*/
239242
public BackendBucketCdnPolicy setCacheMode(java.lang.String cacheMode) {

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/model/BackendServiceCdnPolicy.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ public final class BackendServiceCdnPolicy extends com.google.api.client.json.Ge
5555
* private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static
5656
* content, including common image formats, media (video and audio), and web assets (JavaScript
5757
* and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content
58-
* (including HTML), will not be cached.
58+
* (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it
59+
* defaults to CACHE_ALL_STATIC.
5960
* The value may be {@code null}.
6061
*/
6162
@com.google.api.client.util.Key
@@ -216,7 +217,8 @@ public BackendServiceCdnPolicy setCacheKeyPolicy(CacheKeyPolicy cacheKeyPolicy)
216217
* private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static
217218
* content, including common image formats, media (video and audio), and web assets (JavaScript
218219
* and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content
219-
* (including HTML), will not be cached.
220+
* (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it
221+
* defaults to CACHE_ALL_STATIC.
220222
* @return value or {@code null} for none
221223
*/
222224
public java.lang.String getCacheMode() {
@@ -233,7 +235,8 @@ public java.lang.String getCacheMode() {
233235
* private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static
234236
* content, including common image formats, media (video and audio), and web assets (JavaScript
235237
* and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content
236-
* (including HTML), will not be cached.
238+
* (including HTML), will not be cached. If no value is provided for cdnPolicy.cacheMode, it
239+
* defaults to CACHE_ALL_STATIC.
237240
* @param cacheMode cacheMode or {@code null} for none
238241
*/
239242
public BackendServiceCdnPolicy setCacheMode(java.lang.String cacheMode) {

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/model/NetworkProfile.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ public final class NetworkProfile extends com.google.api.client.json.GenericJson
6464
@com.google.api.client.util.Key
6565
private java.lang.String kind;
6666

67+
/**
68+
* [Output Only] Location to which the network is restricted.
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private NetworkProfileLocation location;
73+
6774
/**
6875
* [Output Only] Name of the resource.
6976
* The value may be {@code null}.
@@ -177,6 +184,23 @@ public NetworkProfile setKind(java.lang.String kind) {
177184
return this;
178185
}
179186

187+
/**
188+
* [Output Only] Location to which the network is restricted.
189+
* @return value or {@code null} for none
190+
*/
191+
public NetworkProfileLocation getLocation() {
192+
return location;
193+
}
194+
195+
/**
196+
* [Output Only] Location to which the network is restricted.
197+
* @param location location or {@code null} for none
198+
*/
199+
public NetworkProfile setLocation(NetworkProfileLocation location) {
200+
this.location = location;
201+
return this;
202+
}
203+
180204
/**
181205
* [Output Only] Name of the resource.
182206
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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.compute.model;
18+
19+
/**
20+
* Model definition for NetworkProfileLocation.
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 Compute 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 NetworkProfileLocation extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.lang.String name;
37+
38+
/**
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String scope;
43+
44+
/**
45+
* @return value or {@code null} for none
46+
*/
47+
public java.lang.String getName() {
48+
return name;
49+
}
50+
51+
/**
52+
* @param name name or {@code null} for none
53+
*/
54+
public NetworkProfileLocation setName(java.lang.String name) {
55+
this.name = name;
56+
return this;
57+
}
58+
59+
/**
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getScope() {
63+
return scope;
64+
}
65+
66+
/**
67+
* @param scope scope or {@code null} for none
68+
*/
69+
public NetworkProfileLocation setScope(java.lang.String scope) {
70+
this.scope = scope;
71+
return this;
72+
}
73+
74+
@Override
75+
public NetworkProfileLocation set(String fieldName, Object value) {
76+
return (NetworkProfileLocation) super.set(fieldName, value);
77+
}
78+
79+
@Override
80+
public NetworkProfileLocation clone() {
81+
return (NetworkProfileLocation) super.clone();
82+
}
83+
84+
}

clients/google-api-services-compute/beta/2.0.0/com/google/api/services/compute/model/ResourceStatus.java

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

40+
/**
41+
* [Output Only] The physical host topology of the host on which the VM is running.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private ResourceStatusPhysicalHostTopology physicalHostTopology;
46+
4047
/**
4148
* The value may be {@code null}.
4249
*/
@@ -66,6 +73,23 @@ public ResourceStatus setPhysicalHost(java.lang.String physicalHost) {
6673
return this;
6774
}
6875

76+
/**
77+
* [Output Only] The physical host topology of the host on which the VM is running.
78+
* @return value or {@code null} for none
79+
*/
80+
public ResourceStatusPhysicalHostTopology getPhysicalHostTopology() {
81+
return physicalHostTopology;
82+
}
83+
84+
/**
85+
* [Output Only] The physical host topology of the host on which the VM is running.
86+
* @param physicalHostTopology physicalHostTopology or {@code null} for none
87+
*/
88+
public ResourceStatus setPhysicalHostTopology(ResourceStatusPhysicalHostTopology physicalHostTopology) {
89+
this.physicalHostTopology = physicalHostTopology;
90+
return this;
91+
}
92+
6993
/**
7094
* @return value or {@code null} for none
7195
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
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.compute.model;
18+
19+
/**
20+
* Represents the physical host topology of the host on which the VM is running.
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 Compute 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 ResourceStatusPhysicalHostTopology extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.lang.String block;
37+
38+
/**
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String cluster;
43+
44+
/**
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.String host;
49+
50+
/**
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String subblock;
55+
56+
/**
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getBlock() {
60+
return block;
61+
}
62+
63+
/**
64+
* @param block block or {@code null} for none
65+
*/
66+
public ResourceStatusPhysicalHostTopology setBlock(java.lang.String block) {
67+
this.block = block;
68+
return this;
69+
}
70+
71+
/**
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getCluster() {
75+
return cluster;
76+
}
77+
78+
/**
79+
* @param cluster cluster or {@code null} for none
80+
*/
81+
public ResourceStatusPhysicalHostTopology setCluster(java.lang.String cluster) {
82+
this.cluster = cluster;
83+
return this;
84+
}
85+
86+
/**
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getHost() {
90+
return host;
91+
}
92+
93+
/**
94+
* @param host host or {@code null} for none
95+
*/
96+
public ResourceStatusPhysicalHostTopology setHost(java.lang.String host) {
97+
this.host = host;
98+
return this;
99+
}
100+
101+
/**
102+
* @return value or {@code null} for none
103+
*/
104+
public java.lang.String getSubblock() {
105+
return subblock;
106+
}
107+
108+
/**
109+
* @param subblock subblock or {@code null} for none
110+
*/
111+
public ResourceStatusPhysicalHostTopology setSubblock(java.lang.String subblock) {
112+
this.subblock = subblock;
113+
return this;
114+
}
115+
116+
@Override
117+
public ResourceStatusPhysicalHostTopology set(String fieldName, Object value) {
118+
return (ResourceStatusPhysicalHostTopology) super.set(fieldName, value);
119+
}
120+
121+
@Override
122+
public ResourceStatusPhysicalHostTopology clone() {
123+
return (ResourceStatusPhysicalHostTopology) super.clone();
124+
}
125+
126+
}

0 commit comments

Comments
 (0)