Skip to content

Commit 3326107

Browse files
chore: regenerate compute client
1 parent 66f19e5 commit 3326107

5 files changed

Lines changed: 54 additions & 54 deletions

File tree

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

clients/google-api-services-compute/alpha/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.
@@ -159,23 +159,6 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
159159
@com.google.api.client.util.Key
160160
private java.lang.String zone;
161161

162-
/**
163-
* Output only. [Output Only] Health information for the reservation block.
164-
* @return value or {@code null} for none
165-
*/
166-
public ReservationBlockHealthInfo getBlockHealthInfo() {
167-
return blockHealthInfo;
168-
}
169-
170-
/**
171-
* Output only. [Output Only] Health information for the reservation block.
172-
* @param blockHealthInfo blockHealthInfo or {@code null} for none
173-
*/
174-
public ReservationBlock setBlockHealthInfo(ReservationBlockHealthInfo blockHealthInfo) {
175-
this.blockHealthInfo = blockHealthInfo;
176-
return this;
177-
}
178-
179162
/**
180163
* Output only. [Output Only] The number of resources that are allocated in this reservation
181164
* block.
@@ -212,6 +195,23 @@ public ReservationBlock setCreationTimestamp(java.lang.String creationTimestamp)
212195
return this;
213196
}
214197

198+
/**
199+
* Output only. [Output Only] Health information for the reservation block.
200+
* @return value or {@code null} for none
201+
*/
202+
public ReservationBlockHealthInfo getHealthInfo() {
203+
return healthInfo;
204+
}
205+
206+
/**
207+
* Output only. [Output Only] Health information for the reservation block.
208+
* @param healthInfo healthInfo or {@code null} for none
209+
*/
210+
public ReservationBlock setHealthInfo(ReservationBlockHealthInfo healthInfo) {
211+
this.healthInfo = healthInfo;
212+
return this;
213+
}
214+
215215
/**
216216
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
217217
* by the server.

clients/google-api-services-compute/alpha/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.
@@ -135,13 +142,6 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
135142
@com.google.api.client.util.Key
136143
private java.lang.String status;
137144

138-
/**
139-
* Output only. [Output Only] Health information for the reservation subBlock.
140-
* The value may be {@code null}.
141-
*/
142-
@com.google.api.client.util.Key
143-
private ReservationSubBlockHealthInfo subBlockHealthInfo;
144-
145145
/**
146146
* Output only. [Output Only] Zone in which the reservation subBlock resides.
147147
* The value may be {@code null}.
@@ -200,6 +200,23 @@ public ReservationSubBlock setCreationTimestamp(java.lang.String creationTimesta
200200
return this;
201201
}
202202

203+
/**
204+
* Output only. [Output Only] Health information for the reservation subBlock.
205+
* @return value or {@code null} for none
206+
*/
207+
public ReservationSubBlockHealthInfo getHealthInfo() {
208+
return healthInfo;
209+
}
210+
211+
/**
212+
* Output only. [Output Only] Health information for the reservation subBlock.
213+
* @param healthInfo healthInfo or {@code null} for none
214+
*/
215+
public ReservationSubBlock setHealthInfo(ReservationSubBlockHealthInfo healthInfo) {
216+
this.healthInfo = healthInfo;
217+
return this;
218+
}
219+
203220
/**
204221
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
205222
* by the server.
@@ -403,23 +420,6 @@ public ReservationSubBlock setStatus(java.lang.String status) {
403420
return this;
404421
}
405422

406-
/**
407-
* Output only. [Output Only] Health information for the reservation subBlock.
408-
* @return value or {@code null} for none
409-
*/
410-
public ReservationSubBlockHealthInfo getSubBlockHealthInfo() {
411-
return subBlockHealthInfo;
412-
}
413-
414-
/**
415-
* Output only. [Output Only] Health information for the reservation subBlock.
416-
* @param subBlockHealthInfo subBlockHealthInfo or {@code null} for none
417-
*/
418-
public ReservationSubBlock setSubBlockHealthInfo(ReservationSubBlockHealthInfo subBlockHealthInfo) {
419-
this.subBlockHealthInfo = subBlockHealthInfo;
420-
return this;
421-
}
422-
423423
/**
424424
* Output only. [Output Only] Zone in which the reservation subBlock resides.
425425
* @return value or {@code null} for none

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-rev20260612-2.0.0</version>
12-
<name>Compute Engine API alpha-rev20260612-2.0.0</name>
11+
<version>alpha-rev20260625-2.0.0</version>
12+
<name>Compute Engine API alpha-rev20260625-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-rev20260612-2.0.0</version>
25+
<version>alpha-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:alpha-rev20260612-2.0.0'
38+
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260625-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)