Skip to content

Commit dac8193

Browse files
1 parent 6b968f0 commit dac8193

File tree

75 files changed

+8856
-691
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+8856
-691
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-rev20251015-2.0.0</version>
25+
<version>beta-rev20251019-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-rev20251015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-compute:beta-rev20251019-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 2897 additions & 602 deletions
Large diffs are not rendered by default.
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Info for accelerator topologies within a densely packed reservation.
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 AcceleratorTopologiesInfo extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Info for each accelerator topology.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<AcceleratorTopologiesInfoAcceleratorTopologyInfo> acceleratorTopologyInfos;
38+
39+
/**
40+
* Info for each accelerator topology.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<AcceleratorTopologiesInfoAcceleratorTopologyInfo> getAcceleratorTopologyInfos() {
44+
return acceleratorTopologyInfos;
45+
}
46+
47+
/**
48+
* Info for each accelerator topology.
49+
* @param acceleratorTopologyInfos acceleratorTopologyInfos or {@code null} for none
50+
*/
51+
public AcceleratorTopologiesInfo setAcceleratorTopologyInfos(java.util.List<AcceleratorTopologiesInfoAcceleratorTopologyInfo> acceleratorTopologyInfos) {
52+
this.acceleratorTopologyInfos = acceleratorTopologyInfos;
53+
return this;
54+
}
55+
56+
@Override
57+
public AcceleratorTopologiesInfo set(String fieldName, Object value) {
58+
return (AcceleratorTopologiesInfo) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public AcceleratorTopologiesInfo clone() {
63+
return (AcceleratorTopologiesInfo) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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+
* Info for a slice of a given topology.
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 AcceleratorTopologiesInfoAcceleratorTopologyInfo extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The accelerator topology.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String acceleratorTopology;
38+
39+
/**
40+
* Info for each topology state.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState> infoPerTopologyStates;
45+
46+
/**
47+
* The accelerator topology.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getAcceleratorTopology() {
51+
return acceleratorTopology;
52+
}
53+
54+
/**
55+
* The accelerator topology.
56+
* @param acceleratorTopology acceleratorTopology or {@code null} for none
57+
*/
58+
public AcceleratorTopologiesInfoAcceleratorTopologyInfo setAcceleratorTopology(java.lang.String acceleratorTopology) {
59+
this.acceleratorTopology = acceleratorTopology;
60+
return this;
61+
}
62+
63+
/**
64+
* Info for each topology state.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.util.List<AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState> getInfoPerTopologyStates() {
68+
return infoPerTopologyStates;
69+
}
70+
71+
/**
72+
* Info for each topology state.
73+
* @param infoPerTopologyStates infoPerTopologyStates or {@code null} for none
74+
*/
75+
public AcceleratorTopologiesInfoAcceleratorTopologyInfo setInfoPerTopologyStates(java.util.List<AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState> infoPerTopologyStates) {
76+
this.infoPerTopologyStates = infoPerTopologyStates;
77+
return this;
78+
}
79+
80+
@Override
81+
public AcceleratorTopologiesInfoAcceleratorTopologyInfo set(String fieldName, Object value) {
82+
return (AcceleratorTopologiesInfoAcceleratorTopologyInfo) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public AcceleratorTopologiesInfoAcceleratorTopologyInfo clone() {
87+
return (AcceleratorTopologiesInfoAcceleratorTopologyInfo) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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+
* Info for each topology state.
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 AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The number of accelerator topologies in this state.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer count;
38+
39+
/**
40+
* The state of the accelerator topology.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String state;
45+
46+
/**
47+
* The number of accelerator topologies in this state.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.Integer getCount() {
51+
return count;
52+
}
53+
54+
/**
55+
* The number of accelerator topologies in this state.
56+
* @param count count or {@code null} for none
57+
*/
58+
public AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState setCount(java.lang.Integer count) {
59+
this.count = count;
60+
return this;
61+
}
62+
63+
/**
64+
* The state of the accelerator topology.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getState() {
68+
return state;
69+
}
70+
71+
/**
72+
* The state of the accelerator topology.
73+
* @param state state or {@code null} for none
74+
*/
75+
public AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState setState(java.lang.String state) {
76+
this.state = state;
77+
return this;
78+
}
79+
80+
@Override
81+
public AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState set(String fieldName, Object value) {
82+
return (AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState clone() {
87+
return (AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState) super.clone();
88+
}
89+
90+
}

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,15 @@ public final class BackendBucket extends com.google.api.client.json.GenericJson
134134
@com.google.api.client.util.Key
135135
private BackendBucketParams params;
136136

137+
/**
138+
* [Output Only] URL of the region where the regional backend bucket resides. This field is not
139+
* applicable to global backend buckets. You must specify this field as part of the HTTP request
140+
* URL. It is not settable as a field in the request body.
141+
* The value may be {@code null}.
142+
*/
143+
@com.google.api.client.util.Key
144+
private java.lang.String region;
145+
137146
/**
138147
* [Output Only] Server-defined URL for the resource.
139148
* The value may be {@code null}.
@@ -391,6 +400,27 @@ public BackendBucket setParams(BackendBucketParams params) {
391400
return this;
392401
}
393402

403+
/**
404+
* [Output Only] URL of the region where the regional backend bucket resides. This field is not
405+
* applicable to global backend buckets. You must specify this field as part of the HTTP request
406+
* URL. It is not settable as a field in the request body.
407+
* @return value or {@code null} for none
408+
*/
409+
public java.lang.String getRegion() {
410+
return region;
411+
}
412+
413+
/**
414+
* [Output Only] URL of the region where the regional backend bucket resides. This field is not
415+
* applicable to global backend buckets. You must specify this field as part of the HTTP request
416+
* URL. It is not settable as a field in the request body.
417+
* @param region region or {@code null} for none
418+
*/
419+
public BackendBucket setRegion(java.lang.String region) {
420+
this.region = region;
421+
return this;
422+
}
423+
394424
/**
395425
* [Output Only] Server-defined URL for the resource.
396426
* @return value or {@code null} for none

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class BackendBucketCdnPolicyNegativeCachingPolicy extends com.googl
3131

3232
/**
3333
* The HTTP status code to define a TTL against. Only HTTP status codes 300, 301, 302, 307, 308,
34-
* 404, 405, 410, 421, 451 and 501 are can be specified as values, and you cannot specify a status
34+
* 404, 405, 410, 421, 451 and 501 can be specified as values, and you cannot specify a status
3535
* code more than once.
3636
* The value may be {@code null}.
3737
*/
@@ -49,7 +49,7 @@ public final class BackendBucketCdnPolicyNegativeCachingPolicy extends com.googl
4949

5050
/**
5151
* The HTTP status code to define a TTL against. Only HTTP status codes 300, 301, 302, 307, 308,
52-
* 404, 405, 410, 421, 451 and 501 are can be specified as values, and you cannot specify a status
52+
* 404, 405, 410, 421, 451 and 501 can be specified as values, and you cannot specify a status
5353
* code more than once.
5454
* @return value or {@code null} for none
5555
*/
@@ -59,7 +59,7 @@ public java.lang.Integer getCode() {
5959

6060
/**
6161
* The HTTP status code to define a TTL against. Only HTTP status codes 300, 301, 302, 307, 308,
62-
* 404, 405, 410, 421, 451 and 501 are can be specified as values, and you cannot specify a status
62+
* 404, 405, 410, 421, 451 and 501 can be specified as values, and you cannot specify a status
6363
* code more than once.
6464
* @param code code or {@code null} for none
6565
*/

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public final class BackendCustomMetric extends com.google.api.client.json.Generi
4747

4848
/**
4949
* Name of a custom utilization signal. The name must be 1-64 characters long and match the
50-
* regular expression[a-z]([-_.a-z0-9]*[a-z0-9])? which means that the first character must be a
51-
* lowercase letter, and all following characters must be a dash, period, underscore, lowercase
50+
* regular expression `[a-z]([-_.a-z0-9]*[a-z0-9])?` which means that the first character must be
51+
* a lowercase letter, and all following characters must be a dash, period, underscore, lowercase
5252
* letter, or digit, except the last character, which cannot be a dash, period, or underscore. For
5353
* usage guidelines, see Custom Metrics balancing mode. This field can only be used for a global
5454
* or regional backend service with the loadBalancingScheme set to
@@ -98,8 +98,8 @@ public BackendCustomMetric setMaxUtilization(java.lang.Float maxUtilization) {
9898

9999
/**
100100
* Name of a custom utilization signal. The name must be 1-64 characters long and match the
101-
* regular expression[a-z]([-_.a-z0-9]*[a-z0-9])? which means that the first character must be a
102-
* lowercase letter, and all following characters must be a dash, period, underscore, lowercase
101+
* regular expression `[a-z]([-_.a-z0-9]*[a-z0-9])?` which means that the first character must be
102+
* a lowercase letter, and all following characters must be a dash, period, underscore, lowercase
103103
* letter, or digit, except the last character, which cannot be a dash, period, or underscore. For
104104
* usage guidelines, see Custom Metrics balancing mode. This field can only be used for a global
105105
* or regional backend service with the loadBalancingScheme set to
@@ -112,8 +112,8 @@ public java.lang.String getName() {
112112

113113
/**
114114
* Name of a custom utilization signal. The name must be 1-64 characters long and match the
115-
* regular expression[a-z]([-_.a-z0-9]*[a-z0-9])? which means that the first character must be a
116-
* lowercase letter, and all following characters must be a dash, period, underscore, lowercase
115+
* regular expression `[a-z]([-_.a-z0-9]*[a-z0-9])?` which means that the first character must be
116+
* a lowercase letter, and all following characters must be a dash, period, underscore, lowercase
117117
* letter, or digit, except the last character, which cannot be a dash, period, or underscore. For
118118
* usage guidelines, see Custom Metrics balancing mode. This field can only be used for a global
119119
* or regional backend service with the loadBalancingScheme set to

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class BackendServiceCdnPolicyNegativeCachingPolicy extends com.goog
3131

3232
/**
3333
* The HTTP status code to define a TTL against. Only HTTP status codes 300, 301, 302, 307, 308,
34-
* 404, 405, 410, 421, 451 and 501 are can be specified as values, and you cannot specify a status
34+
* 404, 405, 410, 421, 451 and 501 can be specified as values, and you cannot specify a status
3535
* code more than once.
3636
* The value may be {@code null}.
3737
*/
@@ -49,7 +49,7 @@ public final class BackendServiceCdnPolicyNegativeCachingPolicy extends com.goog
4949

5050
/**
5151
* The HTTP status code to define a TTL against. Only HTTP status codes 300, 301, 302, 307, 308,
52-
* 404, 405, 410, 421, 451 and 501 are can be specified as values, and you cannot specify a status
52+
* 404, 405, 410, 421, 451 and 501 can be specified as values, and you cannot specify a status
5353
* code more than once.
5454
* @return value or {@code null} for none
5555
*/
@@ -59,7 +59,7 @@ public java.lang.Integer getCode() {
5959

6060
/**
6161
* The HTTP status code to define a TTL against. Only HTTP status codes 300, 301, 302, 307, 308,
62-
* 404, 405, 410, 421, 451 and 501 are can be specified as values, and you cannot specify a status
62+
* 404, 405, 410, 421, 451 and 501 can be specified as values, and you cannot specify a status
6363
* code more than once.
6464
* @param code code or {@code null} for none
6565
*/

0 commit comments

Comments
 (0)