Skip to content

Commit da18382

Browse files
1 parent f665df7 commit da18382

File tree

20 files changed

+280
-24
lines changed

20 files changed

+280
-24
lines changed

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

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

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2509,6 +2509,40 @@ public List setPageToken(java.lang.String pageToken) {
25092509
return this;
25102510
}
25112511

2512+
/**
2513+
* When set to `true`, operations that are reachable are returned as normal, and those
2514+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2515+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2516+
* `"projects/example/locations/-"`. This field is not by default supported and will
2517+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2518+
* service or product specific documentation.
2519+
*/
2520+
@com.google.api.client.util.Key
2521+
private java.lang.Boolean returnPartialSuccess;
2522+
2523+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
2524+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
2525+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
2526+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
2527+
explicitly documented otherwise in service or product specific documentation.
2528+
*/
2529+
public java.lang.Boolean getReturnPartialSuccess() {
2530+
return returnPartialSuccess;
2531+
}
2532+
2533+
/**
2534+
* When set to `true`, operations that are reachable are returned as normal, and those
2535+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2536+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2537+
* `"projects/example/locations/-"`. This field is not by default supported and will
2538+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2539+
* service or product specific documentation.
2540+
*/
2541+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
2542+
this.returnPartialSuccess = returnPartialSuccess;
2543+
return this;
2544+
}
2545+
25122546
@Override
25132547
public List set(String parameterName, Object value) {
25142548
return (List) super.set(parameterName, value);

clients/google-api-services-tpu/v1/2.0.0/com/google/api/services/tpu/v1/model/ListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-tpu/v1/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>v1-rev20250903-2.0.0</version>
12-
<name>Cloud TPU API v1-rev20250903-2.0.0</name>
11+
<version>v1-rev20251005-2.0.0</version>
12+
<name>Cloud TPU API v1-rev20251005-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2541,6 +2541,40 @@ public List setPageToken(java.lang.String pageToken) {
25412541
return this;
25422542
}
25432543

2544+
/**
2545+
* When set to `true`, operations that are reachable are returned as normal, and those
2546+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2547+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2548+
* `"projects/example/locations/-"`. This field is not by default supported and will
2549+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2550+
* service or product specific documentation.
2551+
*/
2552+
@com.google.api.client.util.Key
2553+
private java.lang.Boolean returnPartialSuccess;
2554+
2555+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
2556+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
2557+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
2558+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
2559+
explicitly documented otherwise in service or product specific documentation.
2560+
*/
2561+
public java.lang.Boolean getReturnPartialSuccess() {
2562+
return returnPartialSuccess;
2563+
}
2564+
2565+
/**
2566+
* When set to `true`, operations that are reachable are returned as normal, and those
2567+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2568+
* This can only be `true` when reading across collections e.g. when `parent` is set to
2569+
* `"projects/example/locations/-"`. This field is not by default supported and will
2570+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
2571+
* service or product specific documentation.
2572+
*/
2573+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
2574+
this.returnPartialSuccess = returnPartialSuccess;
2575+
return this;
2576+
}
2577+
25442578
@Override
25452579
public List set(String parameterName, Object value) {
25462580
return (List) super.set(parameterName, value);

clients/google-api-services-tpu/v1alpha1/2.0.0/com/google/api/services/tpu/v1alpha1/model/ListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-tpu/v1alpha1/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>v1alpha1-rev20250903-2.0.0</version>
12-
<name>Cloud TPU API v1alpha1-rev20250903-2.0.0</name>
11+
<version>v1alpha1-rev20251005-2.0.0</version>
12+
<name>Cloud TPU API v1alpha1-rev20251005-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)