Skip to content

Commit 698f2ca

Browse files
1 parent d86d96b commit 698f2ca

File tree

10 files changed

+152
-24
lines changed

10 files changed

+152
-24
lines changed

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

clients/google-api-services-datafusion/v1/2.0.0/com/google/api/services/datafusion/v1/DataFusion.java

Lines changed: 40 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
449-
* is primarily intended for internal usage.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
455-
primarily intended for internal usage.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
463-
* is primarily intended for internal usage.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;
@@ -3182,6 +3182,40 @@ public List setPageToken(java.lang.String pageToken) {
31823182
return this;
31833183
}
31843184

3185+
/**
3186+
* When set to `true`, operations that are reachable are returned as normal, and those
3187+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3188+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3189+
* `"projects/example/locations/-"`. This field is not by default supported and will
3190+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3191+
* service or product specific documentation.
3192+
*/
3193+
@com.google.api.client.util.Key
3194+
private java.lang.Boolean returnPartialSuccess;
3195+
3196+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
3197+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
3198+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
3199+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
3200+
explicitly documented otherwise in service or product specific documentation.
3201+
*/
3202+
public java.lang.Boolean getReturnPartialSuccess() {
3203+
return returnPartialSuccess;
3204+
}
3205+
3206+
/**
3207+
* When set to `true`, operations that are reachable are returned as normal, and those
3208+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3209+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3210+
* `"projects/example/locations/-"`. This field is not by default supported and will
3211+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3212+
* service or product specific documentation.
3213+
*/
3214+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
3215+
this.returnPartialSuccess = returnPartialSuccess;
3216+
return this;
3217+
}
3218+
31853219
@Override
31863220
public List set(String parameterName, Object value) {
31873221
return (List) super.set(parameterName, value);

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

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

47+
/**
48+
* Unordered list. Unreachable resources. Populated when the request sets
49+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. 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 ListOperationsResponse setOperations(java.util.List<Operation> operations
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 e.g. 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 e.g. when
103+
* attempting to list all resources across all supported locations.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
81111
@Override
82112
public ListOperationsResponse set(String fieldName, Object value) {
83113
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-datafusion/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-datafusion</artifactId>
11-
<version>v1-rev20251006-2.0.0</version>
12-
<name>Cloud Data Fusion API v1-rev20251006-2.0.0</name>
11+
<version>v1-rev20251106-2.0.0</version>
12+
<name>Cloud Data Fusion API v1-rev20251106-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-datafusion/v1beta1/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-datafusion</artifactId>
25-
<version>v1beta1-rev20251006-2.0.0</version>
25+
<version>v1beta1-rev20251106-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-datafusion:v1beta1-rev20251006-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1beta1-rev20251106-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datafusion/v1beta1/2.0.0/com/google/api/services/datafusion/v1beta1/DataFusion.java

Lines changed: 40 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -445,22 +445,22 @@ public List setName(java.lang.String name) {
445445
}
446446

447447
/**
448-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
449-
* is primarily intended for internal usage.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
455-
primarily intended for internal usage.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
463-
* is primarily intended for internal usage.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;
@@ -4180,6 +4180,40 @@ public List setPageToken(java.lang.String pageToken) {
41804180
return this;
41814181
}
41824182

4183+
/**
4184+
* When set to `true`, operations that are reachable are returned as normal, and those
4185+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4186+
* This can only be `true` when reading across collections e.g. when `parent` is set to
4187+
* `"projects/example/locations/-"`. This field is not by default supported and will
4188+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
4189+
* service or product specific documentation.
4190+
*/
4191+
@com.google.api.client.util.Key
4192+
private java.lang.Boolean returnPartialSuccess;
4193+
4194+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
4195+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
4196+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
4197+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
4198+
explicitly documented otherwise in service or product specific documentation.
4199+
*/
4200+
public java.lang.Boolean getReturnPartialSuccess() {
4201+
return returnPartialSuccess;
4202+
}
4203+
4204+
/**
4205+
* When set to `true`, operations that are reachable are returned as normal, and those
4206+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4207+
* This can only be `true` when reading across collections e.g. when `parent` is set to
4208+
* `"projects/example/locations/-"`. This field is not by default supported and will
4209+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
4210+
* service or product specific documentation.
4211+
*/
4212+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
4213+
this.returnPartialSuccess = returnPartialSuccess;
4214+
return this;
4215+
}
4216+
41834217
@Override
41844218
public List set(String parameterName, Object value) {
41854219
return (List) super.set(parameterName, value);

clients/google-api-services-datafusion/v1beta1/2.0.0/com/google/api/services/datafusion/v1beta1/model/ListOperationsResponse.java

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

47+
/**
48+
* Unordered list. Unreachable resources. Populated when the request sets
49+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. 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 ListOperationsResponse setOperations(java.util.List<Operation> operations
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 e.g. 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 e.g. when
103+
* attempting to list all resources across all supported locations.
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
81111
@Override
82112
public ListOperationsResponse set(String fieldName, Object value) {
83113
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-datafusion/v1beta1/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-datafusion</artifactId>
11-
<version>v1beta1-rev20251006-2.0.0</version>
12-
<name>Cloud Data Fusion API v1beta1-rev20251006-2.0.0</name>
11+
<version>v1beta1-rev20251106-2.0.0</version>
12+
<name>Cloud Data Fusion API v1beta1-rev20251106-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-datafusion/v1beta1/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-datafusion</artifactId>
25-
<version>v1beta1-rev20251006-2.0.0</version>
25+
<version>v1beta1-rev20251106-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-datafusion:v1beta1-rev20251006-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datafusion:v1beta1-rev20251106-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)