Skip to content

Commit a7082f0

Browse files
1 parent 6c5f349 commit a7082f0

File tree

7 files changed

+26
-11
lines changed

7 files changed

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

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4163,17 +4163,23 @@ public List setParent(java.lang.String parent) {
41634163
return this;
41644164
}
41654165

4166-
/** The maximum number of items to return. */
4166+
/**
4167+
* The maximum number of items to return. Defaults to 0 if not specified, which means no
4168+
* limit.
4169+
*/
41674170
@com.google.api.client.util.Key
41684171
private java.lang.Integer pageSize;
41694172

4170-
/** The maximum number of items to return.
4173+
/** The maximum number of items to return. Defaults to 0 if not specified, which means no limit.
41714174
*/
41724175
public java.lang.Integer getPageSize() {
41734176
return pageSize;
41744177
}
41754178

4176-
/** The maximum number of items to return. */
4179+
/**
4180+
* The maximum number of items to return. Defaults to 0 if not specified, which means no
4181+
* limit.
4182+
*/
41774183
public List setPageSize(java.lang.Integer pageSize) {
41784184
this.pageSize = pageSize;
41794185
return this;

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public final class Reservation extends com.google.api.client.json.GenericJson {
3838
private java.lang.String name;
3939

4040
/**
41+
* A standard reservation.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
@@ -70,13 +71,15 @@ public Reservation setName(java.lang.String name) {
7071
}
7172

7273
/**
74+
* A standard reservation.
7375
* @return value or {@code null} for none
7476
*/
7577
public Standard getStandard() {
7678
return standard;
7779
}
7880

7981
/**
82+
* A standard reservation.
8083
* @param standard standard or {@code null} for none
8184
*/
8285
public Reservation setStandard(Standard standard) {

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

Lines changed: 7 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-
* Model definition for Standard.
20+
* Details of a standard reservation.
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:
@@ -30,6 +30,7 @@
3030
public final class Standard extends com.google.api.client.json.GenericJson {
3131

3232
/**
33+
* Capacity units this reservation is measured in.
3334
* The value may be {@code null}.
3435
*/
3536
@com.google.api.client.util.Key
@@ -57,19 +58,22 @@ public final class Standard extends com.google.api.client.json.GenericJson {
5758
private java.lang.Integer size;
5859

5960
/**
61+
* The current usage of the reservation.
6062
* The value may be {@code null}.
6163
*/
6264
@com.google.api.client.util.Key
6365
private Usage usage;
6466

6567
/**
68+
* Capacity units this reservation is measured in.
6669
* @return value or {@code null} for none
6770
*/
6871
public java.lang.String getCapacityUnits() {
6972
return capacityUnits;
7073
}
7174

7275
/**
76+
* Capacity units this reservation is measured in.
7377
* @param capacityUnits capacityUnits or {@code null} for none
7478
*/
7579
public Standard setCapacityUnits(java.lang.String capacityUnits) {
@@ -129,13 +133,15 @@ public Standard setSize(java.lang.Integer size) {
129133
}
130134

131135
/**
136+
* The current usage of the reservation.
132137
* @return value or {@code null} for none
133138
*/
134139
public Usage getUsage() {
135140
return usage;
136141
}
137142

138143
/**
144+
* The current usage of the reservation.
139145
* @param usage usage or {@code null} for none
140146
*/
141147
public Standard setUsage(Usage usage) {

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

Lines changed: 1 addition & 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-
* Model definition for Usage.
20+
* Usage details of a reservation.
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:

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-rev20250103-2.0.0</version>
12-
<name>Cloud TPU API v2alpha1-rev20250103-2.0.0</name>
11+
<version>v2alpha1-rev20250116-2.0.0</version>
12+
<name>Cloud TPU API v2alpha1-rev20250116-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-rev20250103-2.0.0</version>
25+
<version>v2alpha1-rev20250116-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-rev20250103-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tpu:v2alpha1-rev20250116-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)