Skip to content

Commit 602b221

Browse files
1 parent 1fbb2e0 commit 602b221

File tree

5 files changed

+71
-6
lines changed

5 files changed

+71
-6
lines changed

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

clients/google-api-services-ml/v1/2.0.0/com/google/api/services/ml/v1/CloudMachineLearningEngine.java

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7250,6 +7250,41 @@ public List setPageToken(java.lang.String pageToken) {
72507250
return this;
72517251
}
72527252

7253+
/**
7254+
* When set to `true`, operations that are reachable are returned as normal, and those that
7255+
* are unreachable are returned in the ListOperationsResponse.unreachable field. This can
7256+
* only be `true` when reading across collections. For example, when `parent` is set to
7257+
* `"projects/example/locations/-"`. This field is not supported by default and will result
7258+
* in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or
7259+
* product specific documentation.
7260+
*/
7261+
@com.google.api.client.util.Key
7262+
private java.lang.Boolean returnPartialSuccess;
7263+
7264+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
7265+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
7266+
when reading across collections. For example, when `parent` is set to
7267+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
7268+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
7269+
documentation.
7270+
*/
7271+
public java.lang.Boolean getReturnPartialSuccess() {
7272+
return returnPartialSuccess;
7273+
}
7274+
7275+
/**
7276+
* When set to `true`, operations that are reachable are returned as normal, and those that
7277+
* are unreachable are returned in the ListOperationsResponse.unreachable field. This can
7278+
* only be `true` when reading across collections. For example, when `parent` is set to
7279+
* `"projects/example/locations/-"`. This field is not supported by default and will result
7280+
* in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or
7281+
* product specific documentation.
7282+
*/
7283+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
7284+
this.returnPartialSuccess = returnPartialSuccess;
7285+
return this;
7286+
}
7287+
72537288
@Override
72547289
public List set(String parameterName, Object value) {
72557290
return (List) super.set(parameterName, value);

clients/google-api-services-ml/v1/2.0.0/com/google/api/services/ml/v1/model/GoogleLongrunningListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ public final class GoogleLongrunningListOperationsResponse extends com.google.ap
4444
@com.google.api.client.util.Key
4545
private java.util.List<GoogleLongrunningOperation> operations;
4646

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

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

clients/google-api-services-ml/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-ml</artifactId>
11-
<version>v1-rev20250823-2.0.0</version>
12-
<name>AI Platform Training &amp; Prediction API v1-rev20250823-2.0.0</name>
11+
<version>v1-rev20251213-2.0.0</version>
12+
<name>AI Platform Training &amp; Prediction API v1-rev20251213-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)