Skip to content

Commit ef2f7e2

Browse files
1 parent 96e7345 commit ef2f7e2

14 files changed

+500
-12
lines changed

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

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196427,6 +196427,22 @@ public Get setReservationBlock(java.lang.String reservationBlock) {
196427196427
return this;
196428196428
}
196429196429

196430+
/** View of the Block. */
196431+
@com.google.api.client.util.Key
196432+
private java.lang.String view;
196433+
196434+
/** View of the Block.
196435+
*/
196436+
public java.lang.String getView() {
196437+
return view;
196438+
}
196439+
196440+
/** View of the Block. */
196441+
public Get setView(java.lang.String view) {
196442+
this.view = view;
196443+
return this;
196444+
}
196445+
196430196446
@Override
196431196447
public Get set(String parameterName, Object value) {
196432196448
return (Get) super.set(parameterName, value);

clients/google-api-services-compute/alpha/2.0.0/com/google/api/services/compute/model/ReservationBlockPhysicalTopology.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class ReservationBlockPhysicalTopology extends com.google.api.clien
4343
@com.google.api.client.util.Key
4444
private java.lang.String cluster;
4545

46+
/**
47+
* The detailed instances information for a given Block
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<ReservationBlockPhysicalTopologyInstance> instances;
52+
4653
/**
4754
* The hash of the capacity block within the cluster.
4855
* @return value or {@code null} for none
@@ -77,6 +84,23 @@ public ReservationBlockPhysicalTopology setCluster(java.lang.String cluster) {
7784
return this;
7885
}
7986

87+
/**
88+
* The detailed instances information for a given Block
89+
* @return value or {@code null} for none
90+
*/
91+
public java.util.List<ReservationBlockPhysicalTopologyInstance> getInstances() {
92+
return instances;
93+
}
94+
95+
/**
96+
* The detailed instances information for a given Block
97+
* @param instances instances or {@code null} for none
98+
*/
99+
public ReservationBlockPhysicalTopology setInstances(java.util.List<ReservationBlockPhysicalTopologyInstance> instances) {
100+
this.instances = instances;
101+
return this;
102+
}
103+
80104
@Override
81105
public ReservationBlockPhysicalTopology set(String fieldName, Object value) {
82106
return (ReservationBlockPhysicalTopology) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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+
* The instances information for a given Block
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 ReservationBlockPhysicalTopologyInstance extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The InstanceId of the instance
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
37+
private java.math.BigInteger instanceId;
38+
39+
/**
40+
* The PhysicalHostTopology of instances within a Block resource.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private ReservationBlockPhysicalTopologyInstancePhysicalHostTopology physicalHostTopology;
45+
46+
/**
47+
* Project where the instance lives
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
51+
private java.math.BigInteger projectId;
52+
53+
/**
54+
* The InstanceId of the instance
55+
* @return value or {@code null} for none
56+
*/
57+
public java.math.BigInteger getInstanceId() {
58+
return instanceId;
59+
}
60+
61+
/**
62+
* The InstanceId of the instance
63+
* @param instanceId instanceId or {@code null} for none
64+
*/
65+
public ReservationBlockPhysicalTopologyInstance setInstanceId(java.math.BigInteger instanceId) {
66+
this.instanceId = instanceId;
67+
return this;
68+
}
69+
70+
/**
71+
* The PhysicalHostTopology of instances within a Block resource.
72+
* @return value or {@code null} for none
73+
*/
74+
public ReservationBlockPhysicalTopologyInstancePhysicalHostTopology getPhysicalHostTopology() {
75+
return physicalHostTopology;
76+
}
77+
78+
/**
79+
* The PhysicalHostTopology of instances within a Block resource.
80+
* @param physicalHostTopology physicalHostTopology or {@code null} for none
81+
*/
82+
public ReservationBlockPhysicalTopologyInstance setPhysicalHostTopology(ReservationBlockPhysicalTopologyInstancePhysicalHostTopology physicalHostTopology) {
83+
this.physicalHostTopology = physicalHostTopology;
84+
return this;
85+
}
86+
87+
/**
88+
* Project where the instance lives
89+
* @return value or {@code null} for none
90+
*/
91+
public java.math.BigInteger getProjectId() {
92+
return projectId;
93+
}
94+
95+
/**
96+
* Project where the instance lives
97+
* @param projectId projectId or {@code null} for none
98+
*/
99+
public ReservationBlockPhysicalTopologyInstance setProjectId(java.math.BigInteger projectId) {
100+
this.projectId = projectId;
101+
return this;
102+
}
103+
104+
@Override
105+
public ReservationBlockPhysicalTopologyInstance set(String fieldName, Object value) {
106+
return (ReservationBlockPhysicalTopologyInstance) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public ReservationBlockPhysicalTopologyInstance clone() {
111+
return (ReservationBlockPhysicalTopologyInstance) super.clone();
112+
}
113+
114+
}
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+
* The PhysicalHostTopology of the instance within a Block 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 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 ReservationBlockPhysicalTopologyInstancePhysicalHostTopology extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Host hash for a given instance
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String host;
38+
39+
/**
40+
* Sub block hash for a given instance
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String subBlock;
45+
46+
/**
47+
* Host hash for a given instance
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getHost() {
51+
return host;
52+
}
53+
54+
/**
55+
* Host hash for a given instance
56+
* @param host host or {@code null} for none
57+
*/
58+
public ReservationBlockPhysicalTopologyInstancePhysicalHostTopology setHost(java.lang.String host) {
59+
this.host = host;
60+
return this;
61+
}
62+
63+
/**
64+
* Sub block hash for a given instance
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getSubBlock() {
68+
return subBlock;
69+
}
70+
71+
/**
72+
* Sub block hash for a given instance
73+
* @param subBlock subBlock or {@code null} for none
74+
*/
75+
public ReservationBlockPhysicalTopologyInstancePhysicalHostTopology setSubBlock(java.lang.String subBlock) {
76+
this.subBlock = subBlock;
77+
return this;
78+
}
79+
80+
@Override
81+
public ReservationBlockPhysicalTopologyInstancePhysicalHostTopology set(String fieldName, Object value) {
82+
return (ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public ReservationBlockPhysicalTopologyInstancePhysicalHostTopology clone() {
87+
return (ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) super.clone();
88+
}
89+
90+
}

clients/google-api-services-compute/alpha/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-compute</artifactId>
11-
<version>alpha-rev20250626-2.0.0</version>
12-
<name>Compute Engine API alpha-rev20250626-2.0.0</name>
11+
<version>alpha-rev20250708-2.0.0</version>
12+
<name>Compute Engine API alpha-rev20250708-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153614,6 +153614,22 @@ public Get setReservationBlock(java.lang.String reservationBlock) {
153614153614
return this;
153615153615
}
153616153616

153617+
/** View of the Block. */
153618+
@com.google.api.client.util.Key
153619+
private java.lang.String view;
153620+
153621+
/** View of the Block.
153622+
*/
153623+
public java.lang.String getView() {
153624+
return view;
153625+
}
153626+
153627+
/** View of the Block. */
153628+
public Get setView(java.lang.String view) {
153629+
this.view = view;
153630+
return this;
153631+
}
153632+
153617153633
@Override
153618153634
public Get set(String parameterName, Object value) {
153619153635
return (Get) super.set(parameterName, value);

clients/google-api-services-compute/v1/2.0.0/com/google/api/services/compute/model/ReservationBlockPhysicalTopology.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ public final class ReservationBlockPhysicalTopology extends com.google.api.clien
4343
@com.google.api.client.util.Key
4444
private java.lang.String cluster;
4545

46+
/**
47+
* The detailed instances information for a given Block
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<ReservationBlockPhysicalTopologyInstance> instances;
52+
4653
/**
4754
* The hash of the capacity block within the cluster.
4855
* @return value or {@code null} for none
@@ -77,6 +84,23 @@ public ReservationBlockPhysicalTopology setCluster(java.lang.String cluster) {
7784
return this;
7885
}
7986

87+
/**
88+
* The detailed instances information for a given Block
89+
* @return value or {@code null} for none
90+
*/
91+
public java.util.List<ReservationBlockPhysicalTopologyInstance> getInstances() {
92+
return instances;
93+
}
94+
95+
/**
96+
* The detailed instances information for a given Block
97+
* @param instances instances or {@code null} for none
98+
*/
99+
public ReservationBlockPhysicalTopology setInstances(java.util.List<ReservationBlockPhysicalTopologyInstance> instances) {
100+
this.instances = instances;
101+
return this;
102+
}
103+
80104
@Override
81105
public ReservationBlockPhysicalTopology set(String fieldName, Object value) {
82106
return (ReservationBlockPhysicalTopology) super.set(fieldName, value);

0 commit comments

Comments
 (0)