Skip to content

Commit 7fdbbdb

Browse files
1 parent ec177f1 commit 7fdbbdb

File tree

10 files changed

+40
-38
lines changed

10 files changed

+40
-38
lines changed

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

clients/google-api-services-cloudscheduler/v1/2.0.0/com/google/api/services/cloudscheduler/v1/CloudScheduler.java

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2712,30 +2712,31 @@ public List setPageToken(java.lang.String pageToken) {
27122712

27132713
/**
27142714
* When set to `true`, operations that are reachable are returned as normal, and those
2715-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2716-
* This can only be `true` when reading across collections e.g. when `parent` is set to
2717-
* `"projects/example/locations/-"`. This field is not by default supported and will
2715+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
2716+
* can only be `true` when reading across collections. For example, when `parent` is set
2717+
* to `"projects/example/locations/-"`. This field is not supported by default and will
27182718
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
27192719
* service or product specific documentation.
27202720
*/
27212721
@com.google.api.client.util.Key
27222722
private java.lang.Boolean returnPartialSuccess;
27232723

27242724
/** When set to `true`, operations that are reachable are returned as normal, and those that are
2725-
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
2726-
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
2727-
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
2728-
explicitly documented otherwise in service or product specific documentation.
2725+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
2726+
when reading across collections. For example, when `parent` is set to
2727+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
2728+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
2729+
documentation.
27292730
*/
27302731
public java.lang.Boolean getReturnPartialSuccess() {
27312732
return returnPartialSuccess;
27322733
}
27332734

27342735
/**
27352736
* When set to `true`, operations that are reachable are returned as normal, and those
2736-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2737-
* This can only be `true` when reading across collections e.g. when `parent` is set to
2738-
* `"projects/example/locations/-"`. This field is not by default supported and will
2737+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
2738+
* can only be `true` when reading across collections. For example, when `parent` is set
2739+
* to `"projects/example/locations/-"`. This field is not supported by default and will
27392740
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
27402741
* service or product specific documentation.
27412742
*/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4545

4646
/**
4747
* Unordered list. Unreachable resources. Populated when the request sets
48-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
4949
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
@@ -88,7 +88,7 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
8888

8989
/**
9090
* Unordered list. Unreachable resources. Populated when the request sets
91-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
9292
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
@@ -98,7 +98,7 @@ public java.util.List<java.lang.String> getUnreachable() {
9898

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/

clients/google-api-services-cloudscheduler/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-cloudscheduler</artifactId>
11-
<version>v1-rev20251022-2.0.0</version>
12-
<name>Cloud Scheduler API v1-rev20251022-2.0.0</name>
11+
<version>v1-rev20251205-2.0.0</version>
12+
<name>Cloud Scheduler API v1-rev20251205-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-cloudscheduler/v1beta1/2.0.0/com/google/api/services/cloudscheduler/v1beta1/CloudScheduler.java

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2497,30 +2497,31 @@ public List setPageToken(java.lang.String pageToken) {
24972497

24982498
/**
24992499
* When set to `true`, operations that are reachable are returned as normal, and those
2500-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2501-
* This can only be `true` when reading across collections e.g. when `parent` is set to
2502-
* `"projects/example/locations/-"`. This field is not by default supported and will
2500+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
2501+
* can only be `true` when reading across collections. For example, when `parent` is set
2502+
* to `"projects/example/locations/-"`. This field is not supported by default and will
25032503
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
25042504
* service or product specific documentation.
25052505
*/
25062506
@com.google.api.client.util.Key
25072507
private java.lang.Boolean returnPartialSuccess;
25082508

25092509
/** When set to `true`, operations that are reachable are returned as normal, and those that are
2510-
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
2511-
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
2512-
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
2513-
explicitly documented otherwise in service or product specific documentation.
2510+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
2511+
when reading across collections. For example, when `parent` is set to
2512+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
2513+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
2514+
documentation.
25142515
*/
25152516
public java.lang.Boolean getReturnPartialSuccess() {
25162517
return returnPartialSuccess;
25172518
}
25182519

25192520
/**
25202521
* When set to `true`, operations that are reachable are returned as normal, and those
2521-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
2522-
* This can only be `true` when reading across collections e.g. when `parent` is set to
2523-
* `"projects/example/locations/-"`. This field is not by default supported and will
2522+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
2523+
* can only be `true` when reading across collections. For example, when `parent` is set
2524+
* to `"projects/example/locations/-"`. This field is not supported by default and will
25242525
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
25252526
* service or product specific documentation.
25262527
*/

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4545

4646
/**
4747
* Unordered list. Unreachable resources. Populated when the request sets
48-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
4949
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
@@ -88,7 +88,7 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
8888

8989
/**
9090
* Unordered list. Unreachable resources. Populated when the request sets
91-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
9292
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
@@ -98,7 +98,7 @@ public java.util.List<java.lang.String> getUnreachable() {
9898

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/

clients/google-api-services-cloudscheduler/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-cloudscheduler</artifactId>
11-
<version>v1beta1-rev20251022-2.0.0</version>
12-
<name>Cloud Scheduler API v1beta1-rev20251022-2.0.0</name>
11+
<version>v1beta1-rev20251205-2.0.0</version>
12+
<name>Cloud Scheduler API v1beta1-rev20251205-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)