Skip to content

Commit bf079d4

Browse files
1 parent c0a2da4 commit bf079d4

10 files changed

Lines changed: 108 additions & 108 deletions

File tree

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

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ReservationBlock extends com.google.api.client.json.GenericJson {
3131

32-
/**
33-
* Output only. [Output Only] Health information for the reservation block.
34-
* The value may be {@code null}.
35-
*/
36-
@com.google.api.client.util.Key
37-
private ReservationBlockHealthInfo blockHealthInfo;
38-
3932
/**
4033
* Output only. [Output Only] The number of resources that are allocated in this reservation
4134
* block.
@@ -51,6 +44,13 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
5144
@com.google.api.client.util.Key
5245
private java.lang.String creationTimestamp;
5346

47+
/**
48+
* Output only. [Output Only] Health information for the reservation block.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private ReservationBlockHealthInfo healthInfo;
53+
5454
/**
5555
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
5656
* by the server.
@@ -150,23 +150,6 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
150150
@com.google.api.client.util.Key
151151
private java.lang.String zone;
152152

153-
/**
154-
* Output only. [Output Only] Health information for the reservation block.
155-
* @return value or {@code null} for none
156-
*/
157-
public ReservationBlockHealthInfo getBlockHealthInfo() {
158-
return blockHealthInfo;
159-
}
160-
161-
/**
162-
* Output only. [Output Only] Health information for the reservation block.
163-
* @param blockHealthInfo blockHealthInfo or {@code null} for none
164-
*/
165-
public ReservationBlock setBlockHealthInfo(ReservationBlockHealthInfo blockHealthInfo) {
166-
this.blockHealthInfo = blockHealthInfo;
167-
return this;
168-
}
169-
170153
/**
171154
* Output only. [Output Only] The number of resources that are allocated in this reservation
172155
* block.
@@ -203,6 +186,23 @@ public ReservationBlock setCreationTimestamp(java.lang.String creationTimestamp)
203186
return this;
204187
}
205188

189+
/**
190+
* Output only. [Output Only] Health information for the reservation block.
191+
* @return value or {@code null} for none
192+
*/
193+
public ReservationBlockHealthInfo getHealthInfo() {
194+
return healthInfo;
195+
}
196+
197+
/**
198+
* Output only. [Output Only] Health information for the reservation block.
199+
* @param healthInfo healthInfo or {@code null} for none
200+
*/
201+
public ReservationBlock setHealthInfo(ReservationBlockHealthInfo healthInfo) {
202+
this.healthInfo = healthInfo;
203+
return this;
204+
}
205+
206206
/**
207207
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
208208
* by the server.

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
5050
@com.google.api.client.util.Key
5151
private java.lang.String creationTimestamp;
5252

53+
/**
54+
* Output only. [Output Only] Health information for the reservation subBlock.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private ReservationSubBlockHealthInfo healthInfo;
59+
5360
/**
5461
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
5562
* by the server.
@@ -126,13 +133,6 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
126133
@com.google.api.client.util.Key
127134
private java.lang.String status;
128135

129-
/**
130-
* Output only. [Output Only] Health information for the reservation subBlock.
131-
* The value may be {@code null}.
132-
*/
133-
@com.google.api.client.util.Key
134-
private ReservationSubBlockHealthInfo subBlockHealthInfo;
135-
136136
/**
137137
* Output only. [Output Only] Zone in which the reservation subBlock resides.
138138
* The value may be {@code null}.
@@ -191,6 +191,23 @@ public ReservationSubBlock setCreationTimestamp(java.lang.String creationTimesta
191191
return this;
192192
}
193193

194+
/**
195+
* Output only. [Output Only] Health information for the reservation subBlock.
196+
* @return value or {@code null} for none
197+
*/
198+
public ReservationSubBlockHealthInfo getHealthInfo() {
199+
return healthInfo;
200+
}
201+
202+
/**
203+
* Output only. [Output Only] Health information for the reservation subBlock.
204+
* @param healthInfo healthInfo or {@code null} for none
205+
*/
206+
public ReservationSubBlock setHealthInfo(ReservationSubBlockHealthInfo healthInfo) {
207+
this.healthInfo = healthInfo;
208+
return this;
209+
}
210+
194211
/**
195212
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
196213
* by the server.
@@ -373,23 +390,6 @@ public ReservationSubBlock setStatus(java.lang.String status) {
373390
return this;
374391
}
375392

376-
/**
377-
* Output only. [Output Only] Health information for the reservation subBlock.
378-
* @return value or {@code null} for none
379-
*/
380-
public ReservationSubBlockHealthInfo getSubBlockHealthInfo() {
381-
return subBlockHealthInfo;
382-
}
383-
384-
/**
385-
* Output only. [Output Only] Health information for the reservation subBlock.
386-
* @param subBlockHealthInfo subBlockHealthInfo or {@code null} for none
387-
*/
388-
public ReservationSubBlock setSubBlockHealthInfo(ReservationSubBlockHealthInfo subBlockHealthInfo) {
389-
this.subBlockHealthInfo = subBlockHealthInfo;
390-
return this;
391-
}
392-
393393
/**
394394
* Output only. [Output Only] Zone in which the reservation subBlock resides.
395395
* @return value or {@code null} for none

clients/google-api-services-compute/beta/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>beta-rev20260612-2.0.0</version>
12-
<name>Compute Engine API beta-rev20260612-2.0.0</name>
11+
<version>beta-rev20260625-2.0.0</version>
12+
<name>Compute Engine API beta-rev20260625-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ReservationBlock extends com.google.api.client.json.GenericJson {
3131

32-
/**
33-
* Output only. [Output Only] Health information for the reservation block.
34-
* The value may be {@code null}.
35-
*/
36-
@com.google.api.client.util.Key
37-
private ReservationBlockHealthInfo blockHealthInfo;
38-
3932
/**
4033
* Output only. [Output Only] The number of resources that are allocated in this reservation
4134
* block.
@@ -51,6 +44,13 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
5144
@com.google.api.client.util.Key
5245
private java.lang.String creationTimestamp;
5346

47+
/**
48+
* Output only. [Output Only] Health information for the reservation block.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private ReservationBlockHealthInfo healthInfo;
53+
5454
/**
5555
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
5656
* by the server.
@@ -150,23 +150,6 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
150150
@com.google.api.client.util.Key
151151
private java.lang.String zone;
152152

153-
/**
154-
* Output only. [Output Only] Health information for the reservation block.
155-
* @return value or {@code null} for none
156-
*/
157-
public ReservationBlockHealthInfo getBlockHealthInfo() {
158-
return blockHealthInfo;
159-
}
160-
161-
/**
162-
* Output only. [Output Only] Health information for the reservation block.
163-
* @param blockHealthInfo blockHealthInfo or {@code null} for none
164-
*/
165-
public ReservationBlock setBlockHealthInfo(ReservationBlockHealthInfo blockHealthInfo) {
166-
this.blockHealthInfo = blockHealthInfo;
167-
return this;
168-
}
169-
170153
/**
171154
* Output only. [Output Only] The number of resources that are allocated in this reservation
172155
* block.
@@ -203,6 +186,23 @@ public ReservationBlock setCreationTimestamp(java.lang.String creationTimestamp)
203186
return this;
204187
}
205188

189+
/**
190+
* Output only. [Output Only] Health information for the reservation block.
191+
* @return value or {@code null} for none
192+
*/
193+
public ReservationBlockHealthInfo getHealthInfo() {
194+
return healthInfo;
195+
}
196+
197+
/**
198+
* Output only. [Output Only] Health information for the reservation block.
199+
* @param healthInfo healthInfo or {@code null} for none
200+
*/
201+
public ReservationBlock setHealthInfo(ReservationBlockHealthInfo healthInfo) {
202+
this.healthInfo = healthInfo;
203+
return this;
204+
}
205+
206206
/**
207207
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
208208
* by the server.

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
5050
@com.google.api.client.util.Key
5151
private java.lang.String creationTimestamp;
5252

53+
/**
54+
* Output only. [Output Only] Health information for the reservation subBlock.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private ReservationSubBlockHealthInfo healthInfo;
59+
5360
/**
5461
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
5562
* by the server.
@@ -126,13 +133,6 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
126133
@com.google.api.client.util.Key
127134
private java.lang.String status;
128135

129-
/**
130-
* Output only. [Output Only] Health information for the reservation subBlock.
131-
* The value may be {@code null}.
132-
*/
133-
@com.google.api.client.util.Key
134-
private ReservationSubBlockHealthInfo subBlockHealthInfo;
135-
136136
/**
137137
* Output only. [Output Only] Zone in which the reservation subBlock resides.
138138
* The value may be {@code null}.
@@ -191,6 +191,23 @@ public ReservationSubBlock setCreationTimestamp(java.lang.String creationTimesta
191191
return this;
192192
}
193193

194+
/**
195+
* Output only. [Output Only] Health information for the reservation subBlock.
196+
* @return value or {@code null} for none
197+
*/
198+
public ReservationSubBlockHealthInfo getHealthInfo() {
199+
return healthInfo;
200+
}
201+
202+
/**
203+
* Output only. [Output Only] Health information for the reservation subBlock.
204+
* @param healthInfo healthInfo or {@code null} for none
205+
*/
206+
public ReservationSubBlock setHealthInfo(ReservationSubBlockHealthInfo healthInfo) {
207+
this.healthInfo = healthInfo;
208+
return this;
209+
}
210+
194211
/**
195212
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
196213
* by the server.
@@ -373,23 +390,6 @@ public ReservationSubBlock setStatus(java.lang.String status) {
373390
return this;
374391
}
375392

376-
/**
377-
* Output only. [Output Only] Health information for the reservation subBlock.
378-
* @return value or {@code null} for none
379-
*/
380-
public ReservationSubBlockHealthInfo getSubBlockHealthInfo() {
381-
return subBlockHealthInfo;
382-
}
383-
384-
/**
385-
* Output only. [Output Only] Health information for the reservation subBlock.
386-
* @param subBlockHealthInfo subBlockHealthInfo or {@code null} for none
387-
*/
388-
public ReservationSubBlock setSubBlockHealthInfo(ReservationSubBlockHealthInfo subBlockHealthInfo) {
389-
this.subBlockHealthInfo = subBlockHealthInfo;
390-
return this;
391-
}
392-
393393
/**
394394
* Output only. [Output Only] Zone in which the reservation subBlock resides.
395395
* @return value or {@code null} for none

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)