Skip to content

Commit 66aba9d

Browse files
1 parent f4a6125 commit 66aba9d

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

clients/google-api-services-tpu/v2alpha1/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-tpu</artifactId>
25-
<version>v2alpha1-rev20250116-2.0.0</version>
25+
<version>v2alpha1-rev20250225-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-tpu:v2alpha1-rev20250116-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tpu:v2alpha1-rev20250225-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-tpu/v2alpha1/2.0.0/com/google/api/services/tpu/v2alpha1/model/AttachedDisk.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.tpu.v2alpha1.model;
1818

1919
/**
20-
* A node-attached disk resource. Next ID: 8;
20+
* A node-attached disk resource.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Cloud TPU API. For a detailed explanation see:
@@ -45,6 +45,13 @@ public final class AttachedDisk extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.lang.String sourceDisk;
4747

48+
/**
49+
* Optional. The list of worker IDs this disk is attached to.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> workerIds;
54+
4855
/**
4956
* The mode in which to attach this disk. If not specified, the default is READ_WRITE mode. Only
5057
* applicable to data_disks.
@@ -83,6 +90,23 @@ public AttachedDisk setSourceDisk(java.lang.String sourceDisk) {
8390
return this;
8491
}
8592

93+
/**
94+
* Optional. The list of worker IDs this disk is attached to.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.util.List<java.lang.String> getWorkerIds() {
98+
return workerIds;
99+
}
100+
101+
/**
102+
* Optional. The list of worker IDs this disk is attached to.
103+
* @param workerIds workerIds or {@code null} for none
104+
*/
105+
public AttachedDisk setWorkerIds(java.util.List<java.lang.String> workerIds) {
106+
this.workerIds = workerIds;
107+
return this;
108+
}
109+
86110
@Override
87111
public AttachedDisk set(String fieldName, Object value) {
88112
return (AttachedDisk) super.set(fieldName, value);

clients/google-api-services-tpu/v2alpha1/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-tpu</artifactId>
11-
<version>v2alpha1-rev20250116-2.0.0</version>
12-
<name>Cloud TPU API v2alpha1-rev20250116-2.0.0</name>
11+
<version>v2alpha1-rev20250225-2.0.0</version>
12+
<name>Cloud TPU API v2alpha1-rev20250225-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-tpu/v2alpha1/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-tpu</artifactId>
25-
<version>v2alpha1-rev20250116-2.0.0</version>
25+
<version>v2alpha1-rev20250225-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-tpu:v2alpha1-rev20250116-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tpu:v2alpha1-rev20250225-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)