Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-compute/alpha/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-compute</artifactId>
<version>alpha-rev20260612-2.0.0</version>
<version>alpha-rev20260625-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260612-2.0.0'
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260625-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@
@SuppressWarnings("javadoc")
public final class ReservationBlock extends com.google.api.client.json.GenericJson {

/**
* Output only. [Output Only] Health information for the reservation block.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ReservationBlockHealthInfo blockHealthInfo;

/**
* Output only. [Output Only] The number of resources that are allocated in this reservation
* block.
Expand All @@ -51,6 +44,13 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
@com.google.api.client.util.Key
private java.lang.String creationTimestamp;

/**
* Output only. [Output Only] Health information for the reservation block.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ReservationBlockHealthInfo healthInfo;

/**
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
* by the server.
Expand Down Expand Up @@ -159,23 +159,6 @@ public final class ReservationBlock extends com.google.api.client.json.GenericJs
@com.google.api.client.util.Key
private java.lang.String zone;

/**
* Output only. [Output Only] Health information for the reservation block.
* @return value or {@code null} for none
*/
public ReservationBlockHealthInfo getBlockHealthInfo() {
return blockHealthInfo;
}

/**
* Output only. [Output Only] Health information for the reservation block.
* @param blockHealthInfo blockHealthInfo or {@code null} for none
*/
public ReservationBlock setBlockHealthInfo(ReservationBlockHealthInfo blockHealthInfo) {
this.blockHealthInfo = blockHealthInfo;
return this;
}

/**
* Output only. [Output Only] The number of resources that are allocated in this reservation
* block.
Expand Down Expand Up @@ -212,6 +195,23 @@ public ReservationBlock setCreationTimestamp(java.lang.String creationTimestamp)
return this;
}

/**
* Output only. [Output Only] Health information for the reservation block.
* @return value or {@code null} for none
*/
public ReservationBlockHealthInfo getHealthInfo() {
return healthInfo;
}

/**
* Output only. [Output Only] Health information for the reservation block.
* @param healthInfo healthInfo or {@code null} for none
*/
public ReservationBlock setHealthInfo(ReservationBlockHealthInfo healthInfo) {
this.healthInfo = healthInfo;
return this;
}

/**
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
* by the server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
@com.google.api.client.util.Key
private java.lang.String creationTimestamp;

/**
* Output only. [Output Only] Health information for the reservation subBlock.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ReservationSubBlockHealthInfo healthInfo;

/**
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
* by the server.
Expand Down Expand Up @@ -135,13 +142,6 @@ public final class ReservationSubBlock extends com.google.api.client.json.Generi
@com.google.api.client.util.Key
private java.lang.String status;

/**
* Output only. [Output Only] Health information for the reservation subBlock.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ReservationSubBlockHealthInfo subBlockHealthInfo;

/**
* Output only. [Output Only] Zone in which the reservation subBlock resides.
* The value may be {@code null}.
Expand Down Expand Up @@ -200,6 +200,23 @@ public ReservationSubBlock setCreationTimestamp(java.lang.String creationTimesta
return this;
}

/**
* Output only. [Output Only] Health information for the reservation subBlock.
* @return value or {@code null} for none
*/
public ReservationSubBlockHealthInfo getHealthInfo() {
return healthInfo;
}

/**
* Output only. [Output Only] Health information for the reservation subBlock.
* @param healthInfo healthInfo or {@code null} for none
*/
public ReservationSubBlock setHealthInfo(ReservationSubBlockHealthInfo healthInfo) {
this.healthInfo = healthInfo;
return this;
}

/**
* Output only. [Output Only] The unique identifier for the resource. This identifier is defined
* by the server.
Expand Down Expand Up @@ -403,23 +420,6 @@ public ReservationSubBlock setStatus(java.lang.String status) {
return this;
}

/**
* Output only. [Output Only] Health information for the reservation subBlock.
* @return value or {@code null} for none
*/
public ReservationSubBlockHealthInfo getSubBlockHealthInfo() {
return subBlockHealthInfo;
}

/**
* Output only. [Output Only] Health information for the reservation subBlock.
* @param subBlockHealthInfo subBlockHealthInfo or {@code null} for none
*/
public ReservationSubBlock setSubBlockHealthInfo(ReservationSubBlockHealthInfo subBlockHealthInfo) {
this.subBlockHealthInfo = subBlockHealthInfo;
return this;
}

/**
* Output only. [Output Only] Zone in which the reservation subBlock resides.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-compute/alpha/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-compute</artifactId>
<version>alpha-rev20260612-2.0.0</version>
<name>Compute Engine API alpha-rev20260612-2.0.0</name>
<version>alpha-rev20260625-2.0.0</version>
<name>Compute Engine API alpha-rev20260625-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-compute/alpha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-compute</artifactId>
<version>alpha-rev20260612-2.0.0</version>
<version>alpha-rev20260625-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260612-2.0.0'
implementation 'com.google.apis:google-api-services-compute:alpha-rev20260625-2.0.0'
}
```

Expand Down
Loading