Skip to content

Commit c0ef4ba

Browse files
1 parent df7ac8e commit c0ef4ba

File tree

10 files changed

+140
-102
lines changed

10 files changed

+140
-102
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-rev20250411-2.0.0</version>
25+
<version>v1-rev20250530-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-rev20250411-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudscheduler:v1-rev20250530-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ public final class Job extends com.google.api.client.json.GenericJson {
103103
@com.google.api.client.util.Key
104104
private RetryConfig retryConfig;
105105

106+
/**
107+
* Output only. Whether or not this Job satisfies the requirements of physical zone separation
108+
* The value may be {@code null}.
109+
*/
110+
@com.google.api.client.util.Key
111+
private java.lang.Boolean satisfiesPzs;
112+
106113
/**
107114
* Required, except when used with UpdateJob. Describes the schedule on which the job will be
108115
* executed. The schedule can be either of the following types: *
@@ -335,6 +342,23 @@ public Job setRetryConfig(RetryConfig retryConfig) {
335342
return this;
336343
}
337344

345+
/**
346+
* Output only. Whether or not this Job satisfies the requirements of physical zone separation
347+
* @return value or {@code null} for none
348+
*/
349+
public java.lang.Boolean getSatisfiesPzs() {
350+
return satisfiesPzs;
351+
}
352+
353+
/**
354+
* Output only. Whether or not this Job satisfies the requirements of physical zone separation
355+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
356+
*/
357+
public Job setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
358+
this.satisfiesPzs = satisfiesPzs;
359+
return this;
360+
}
361+
338362
/**
339363
* Required, except when used with UpdateJob. Describes the schedule on which the job will be
340364
* executed. The schedule can be either of the following types: *

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

Lines changed: 40 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
package com.google.api.services.cloudscheduler.v1.model;
1818

1919
/**
20-
* Settings that determine the retry behavior. By default, if a job does not complete successfully
21-
* (meaning that an acknowledgement is not received from the handler, then it will be retried with
22-
* exponential backoff according to the settings in RetryConfig.
20+
* Settings that determine the retry behavior. For more information, see [Retry
21+
* jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs). By default, if a job does
22+
* not complete successfully (meaning that an acknowledgement is not received from the handler, then
23+
* it will be retried with exponential backoff according to the settings in RetryConfig.
2324
*
2425
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2526
* transmitted over HTTP when working with the Cloud Scheduler API. For a detailed explanation see:
@@ -42,22 +43,19 @@ public final class RetryConfig extends com.google.api.client.json.GenericJson {
4243
/**
4344
* The time between retries will double `max_doublings` times. A job's retry interval starts at
4445
* min_backoff_duration, then doubles `max_doublings` times, then increases linearly, and finally
45-
* retries at intervals of max_backoff_duration up to retry_count times. For example, if
46-
* min_backoff_duration is 10s, max_backoff_duration is 300s, and `max_doublings` is 3, then the
47-
* job will first be retried in 10s. The retry interval will double three times, and then increase
48-
* linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until
49-
* the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s,
50-
* 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
46+
* retries at intervals of max_backoff_duration up to retry_count times. For examples, see [Retry
47+
* jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs#max-doublings). The
48+
* default value of this field is 5.
5149
* The value may be {@code null}.
5250
*/
5351
@com.google.api.client.util.Key
5452
private java.lang.Integer maxDoublings;
5553

5654
/**
57-
* The time limit for retrying a failed job, measured from time when an execution was first
55+
* The time limit for retrying a failed job, measured from the time when an execution was first
5856
* attempted. If specified with retry_count, the job will be retried until both limits are
5957
* reached. The default value for max_retry_duration is zero, which means retry duration is
60-
* unlimited.
58+
* unlimited. However, if retry_count is also 0, a job attempt won't be retried if it fails.
6159
* The value may be {@code null}.
6260
*/
6361
@com.google.api.client.util.Key
@@ -74,12 +72,13 @@ public final class RetryConfig extends com.google.api.client.json.GenericJson {
7472
/**
7573
* The number of attempts that the system will make to run a job using the exponential backoff
7674
* procedure described by max_doublings. The default value of retry_count is zero. If retry_count
77-
* is 0, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will
78-
* wait for the next scheduled execution time. Setting retry_count to 0 does not prevent failed
79-
* jobs from running according to schedule after the failure. If retry_count is set to a non-zero
80-
* number then Cloud Scheduler will retry failed attempts, using exponential backoff, retry_count
81-
* times, or until the next scheduled execution time, whichever comes first. Values greater than 5
82-
* and negative values are not allowed.
75+
* is 0 (and if max_retry_duration is also 0), a job attempt won't be retried if it fails.
76+
* Instead, Cloud Scheduler system will wait for the next scheduled execution time. Setting
77+
* retry_count to 0 doesn't prevent failed jobs from running according to schedule after the
78+
* failure. If retry_count is set to a non-zero number, Cloud Scheduler will retry the failed job,
79+
* using exponential backoff, for retry_count times until the job succeeds or the number of
80+
* retries is exhausted. Note that the next scheduled execution time might be skipped if the
81+
* retries continue through that time. Values greater than 5 and negative values are not allowed.
8382
* The value may be {@code null}.
8483
*/
8584
@com.google.api.client.util.Key
@@ -107,12 +106,9 @@ public RetryConfig setMaxBackoffDuration(String maxBackoffDuration) {
107106
/**
108107
* The time between retries will double `max_doublings` times. A job's retry interval starts at
109108
* min_backoff_duration, then doubles `max_doublings` times, then increases linearly, and finally
110-
* retries at intervals of max_backoff_duration up to retry_count times. For example, if
111-
* min_backoff_duration is 10s, max_backoff_duration is 300s, and `max_doublings` is 3, then the
112-
* job will first be retried in 10s. The retry interval will double three times, and then increase
113-
* linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until
114-
* the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s,
115-
* 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
109+
* retries at intervals of max_backoff_duration up to retry_count times. For examples, see [Retry
110+
* jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs#max-doublings). The
111+
* default value of this field is 5.
116112
* @return value or {@code null} for none
117113
*/
118114
public java.lang.Integer getMaxDoublings() {
@@ -122,12 +118,9 @@ public java.lang.Integer getMaxDoublings() {
122118
/**
123119
* The time between retries will double `max_doublings` times. A job's retry interval starts at
124120
* min_backoff_duration, then doubles `max_doublings` times, then increases linearly, and finally
125-
* retries at intervals of max_backoff_duration up to retry_count times. For example, if
126-
* min_backoff_duration is 10s, max_backoff_duration is 300s, and `max_doublings` is 3, then the
127-
* job will first be retried in 10s. The retry interval will double three times, and then increase
128-
* linearly by 2^3 * 10s. Finally, the job will retry at intervals of max_backoff_duration until
129-
* the job has been attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s,
130-
* 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
121+
* retries at intervals of max_backoff_duration up to retry_count times. For examples, see [Retry
122+
* jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs#max-doublings). The
123+
* default value of this field is 5.
131124
* @param maxDoublings maxDoublings or {@code null} for none
132125
*/
133126
public RetryConfig setMaxDoublings(java.lang.Integer maxDoublings) {
@@ -136,21 +129,21 @@ public RetryConfig setMaxDoublings(java.lang.Integer maxDoublings) {
136129
}
137130

138131
/**
139-
* The time limit for retrying a failed job, measured from time when an execution was first
132+
* The time limit for retrying a failed job, measured from the time when an execution was first
140133
* attempted. If specified with retry_count, the job will be retried until both limits are
141134
* reached. The default value for max_retry_duration is zero, which means retry duration is
142-
* unlimited.
135+
* unlimited. However, if retry_count is also 0, a job attempt won't be retried if it fails.
143136
* @return value or {@code null} for none
144137
*/
145138
public String getMaxRetryDuration() {
146139
return maxRetryDuration;
147140
}
148141

149142
/**
150-
* The time limit for retrying a failed job, measured from time when an execution was first
143+
* The time limit for retrying a failed job, measured from the time when an execution was first
151144
* attempted. If specified with retry_count, the job will be retried until both limits are
152145
* reached. The default value for max_retry_duration is zero, which means retry duration is
153-
* unlimited.
146+
* unlimited. However, if retry_count is also 0, a job attempt won't be retried if it fails.
154147
* @param maxRetryDuration maxRetryDuration or {@code null} for none
155148
*/
156149
public RetryConfig setMaxRetryDuration(String maxRetryDuration) {
@@ -180,12 +173,13 @@ public RetryConfig setMinBackoffDuration(String minBackoffDuration) {
180173
/**
181174
* The number of attempts that the system will make to run a job using the exponential backoff
182175
* procedure described by max_doublings. The default value of retry_count is zero. If retry_count
183-
* is 0, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will
184-
* wait for the next scheduled execution time. Setting retry_count to 0 does not prevent failed
185-
* jobs from running according to schedule after the failure. If retry_count is set to a non-zero
186-
* number then Cloud Scheduler will retry failed attempts, using exponential backoff, retry_count
187-
* times, or until the next scheduled execution time, whichever comes first. Values greater than 5
188-
* and negative values are not allowed.
176+
* is 0 (and if max_retry_duration is also 0), a job attempt won't be retried if it fails.
177+
* Instead, Cloud Scheduler system will wait for the next scheduled execution time. Setting
178+
* retry_count to 0 doesn't prevent failed jobs from running according to schedule after the
179+
* failure. If retry_count is set to a non-zero number, Cloud Scheduler will retry the failed job,
180+
* using exponential backoff, for retry_count times until the job succeeds or the number of
181+
* retries is exhausted. Note that the next scheduled execution time might be skipped if the
182+
* retries continue through that time. Values greater than 5 and negative values are not allowed.
189183
* @return value or {@code null} for none
190184
*/
191185
public java.lang.Integer getRetryCount() {
@@ -195,12 +189,13 @@ public java.lang.Integer getRetryCount() {
195189
/**
196190
* The number of attempts that the system will make to run a job using the exponential backoff
197191
* procedure described by max_doublings. The default value of retry_count is zero. If retry_count
198-
* is 0, a job attempt will not be retried if it fails. Instead the Cloud Scheduler system will
199-
* wait for the next scheduled execution time. Setting retry_count to 0 does not prevent failed
200-
* jobs from running according to schedule after the failure. If retry_count is set to a non-zero
201-
* number then Cloud Scheduler will retry failed attempts, using exponential backoff, retry_count
202-
* times, or until the next scheduled execution time, whichever comes first. Values greater than 5
203-
* and negative values are not allowed.
192+
* is 0 (and if max_retry_duration is also 0), a job attempt won't be retried if it fails.
193+
* Instead, Cloud Scheduler system will wait for the next scheduled execution time. Setting
194+
* retry_count to 0 doesn't prevent failed jobs from running according to schedule after the
195+
* failure. If retry_count is set to a non-zero number, Cloud Scheduler will retry the failed job,
196+
* using exponential backoff, for retry_count times until the job succeeds or the number of
197+
* retries is exhausted. Note that the next scheduled execution time might be skipped if the
198+
* retries continue through that time. Values greater than 5 and negative values are not allowed.
204199
* @param retryCount retryCount or {@code null} for none
205200
*/
206201
public RetryConfig setRetryCount(java.lang.Integer retryCount) {

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-rev20250411-2.0.0</version>
12-
<name>Cloud Scheduler API v1-rev20250411-2.0.0</name>
11+
<version>v1-rev20250530-2.0.0</version>
12+
<name>Cloud Scheduler API v1-rev20250530-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-rev20250411-2.0.0</version>
25+
<version>v1-rev20250530-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-rev20250411-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudscheduler:v1-rev20250530-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-rev20250411-2.0.0</version>
25+
<version>v1beta1-rev20250530-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-rev20250411-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudscheduler:v1beta1-rev20250530-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,13 @@ public final class Job extends com.google.api.client.json.GenericJson {
113113
@com.google.api.client.util.Key
114114
private RetryConfig retryConfig;
115115

116+
/**
117+
* Output only. Whether or not this Job satisfies the requirements of physical zone separation
118+
* The value may be {@code null}.
119+
*/
120+
@com.google.api.client.util.Key
121+
private java.lang.Boolean satisfiesPzs;
122+
116123
/**
117124
* Required, except when used with UpdateJob. Describes the schedule on which the job will be
118125
* executed. The schedule can be either of the following types: *
@@ -368,6 +375,23 @@ public Job setRetryConfig(RetryConfig retryConfig) {
368375
return this;
369376
}
370377

378+
/**
379+
* Output only. Whether or not this Job satisfies the requirements of physical zone separation
380+
* @return value or {@code null} for none
381+
*/
382+
public java.lang.Boolean getSatisfiesPzs() {
383+
return satisfiesPzs;
384+
}
385+
386+
/**
387+
* Output only. Whether or not this Job satisfies the requirements of physical zone separation
388+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
389+
*/
390+
public Job setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
391+
this.satisfiesPzs = satisfiesPzs;
392+
return this;
393+
}
394+
371395
/**
372396
* Required, except when used with UpdateJob. Describes the schedule on which the job will be
373397
* executed. The schedule can be either of the following types: *

0 commit comments

Comments
 (0)