Skip to content

Commit 64b04f2

Browse files
1 parent 65c9bab commit 64b04f2

29 files changed

Lines changed: 15631 additions & 7588 deletions

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

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

Lines changed: 11967 additions & 7477 deletions
Large diffs are not rendered by default.

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,14 @@ public final class Commitment extends com.google.api.client.json.GenericJson {
143143
@com.google.api.client.util.Key
144144
private CommitmentParams params;
145145

146+
/**
147+
* Optional. Used when category is PERSISTENT_DISK. Each entry in the list represents a commitment
148+
* to a specific Persistent Disk product type and dimension.
149+
* The value may be {@code null}.
150+
*/
151+
@com.google.api.client.util.Key
152+
private java.util.List<PersistentDiskResourceCommitment> persistentDiskResources;
153+
146154
/**
147155
* The minimum time duration that you commit to purchasing resources. The plan that you choose
148156
* determines the preset term length of the commitment (which is 1 year or 3 years) and affects
@@ -512,6 +520,25 @@ public Commitment setParams(CommitmentParams params) {
512520
return this;
513521
}
514522

523+
/**
524+
* Optional. Used when category is PERSISTENT_DISK. Each entry in the list represents a commitment
525+
* to a specific Persistent Disk product type and dimension.
526+
* @return value or {@code null} for none
527+
*/
528+
public java.util.List<PersistentDiskResourceCommitment> getPersistentDiskResources() {
529+
return persistentDiskResources;
530+
}
531+
532+
/**
533+
* Optional. Used when category is PERSISTENT_DISK. Each entry in the list represents a commitment
534+
* to a specific Persistent Disk product type and dimension.
535+
* @param persistentDiskResources persistentDiskResources or {@code null} for none
536+
*/
537+
public Commitment setPersistentDiskResources(java.util.List<PersistentDiskResourceCommitment> persistentDiskResources) {
538+
this.persistentDiskResources = persistentDiskResources;
539+
return this;
540+
}
541+
515542
/**
516543
* The minimum time duration that you commit to purchasing resources. The plan that you choose
517544
* determines the preset term length of the commitment (which is 1 year or 3 years) and affects

0 commit comments

Comments
 (0)