Skip to content

Commit 39876b8

Browse files
1 parent 79d7c0a commit 39876b8

File tree

9 files changed

+54
-24
lines changed

9 files changed

+54
-24
lines changed

clients/google-api-services-cloudtasks/v2/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-cloudtasks</artifactId>
25-
<version>v2-rev20241111-2.0.0</version>
25+
<version>v2-rev20250115-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-cloudtasks:v2-rev20241111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20250115-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2/2.0.0/com/google/api/services/cloudtasks/v2/model/RetryConfig.java

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ public final class RetryConfig extends com.google.api.client.json.GenericJson {
3434
* if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If
3535
* unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates
3636
* unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](htt
37-
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
37+
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
38+
* Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration` are both
39+
* satisfied. When the task has been attempted `max_attempts` times and when the
40+
* `max_retry_duration` time has passed, no further attempts are made, and the task is deleted. If
41+
* you want your task to retry infinitely, you must set `max_attempts` to -1 and
42+
* `max_retry_duration` to 0.
3843
* The value may be {@code null}.
3944
*/
4045
@com.google.api.client.util.Key
@@ -108,7 +113,12 @@ public final class RetryConfig extends com.google.api.client.json.GenericJson {
108113
* if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If
109114
* unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates
110115
* unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](htt
111-
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
116+
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
117+
* Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration` are both
118+
* satisfied. When the task has been attempted `max_attempts` times and when the
119+
* `max_retry_duration` time has passed, no further attempts are made, and the task is deleted. If
120+
* you want your task to retry infinitely, you must set `max_attempts` to -1 and
121+
* `max_retry_duration` to 0.
112122
* @return value or {@code null} for none
113123
*/
114124
public java.lang.Integer getMaxAttempts() {
@@ -120,7 +130,12 @@ public java.lang.Integer getMaxAttempts() {
120130
* if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If
121131
* unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates
122132
* unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](htt
123-
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
133+
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
134+
* Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration` are both
135+
* satisfied. When the task has been attempted `max_attempts` times and when the
136+
* `max_retry_duration` time has passed, no further attempts are made, and the task is deleted. If
137+
* you want your task to retry infinitely, you must set `max_attempts` to -1 and
138+
* `max_retry_duration` to 0.
124139
* @param maxAttempts maxAttempts or {@code null} for none
125140
*/
126141
public RetryConfig setMaxAttempts(java.lang.Integer maxAttempts) {

clients/google-api-services-cloudtasks/v2/2.0.0/pom.xml

Lines changed: 4 additions & 4 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-cloudtasks</artifactId>
11-
<version>v2-rev20241111-2.0.0</version>
12-
<name>Cloud Tasks API v2-rev20241111-2.0.0</name>
11+
<version>v2-rev20250115-2.0.0</version>
12+
<name>Cloud Tasks API v2-rev20250115-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.1</version>
128+
<version>2.7.2</version>
129129
</dependency>
130130
</dependencies>
131131

clients/google-api-services-cloudtasks/v2/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-cloudtasks</artifactId>
25-
<version>v2-rev20241111-2.0.0</version>
25+
<version>v2-rev20250115-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-cloudtasks:v2-rev20241111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20250115-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2beta2/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.1</version>
128+
<version>2.7.2</version>
129129
</dependency>
130130
</dependencies>
131131

clients/google-api-services-cloudtasks/v2beta3/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-cloudtasks</artifactId>
25-
<version>v2beta3-rev20241111-2.0.0</version>
25+
<version>v2beta3-rev20250115-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-cloudtasks:v2beta3-rev20241111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2beta3-rev20250115-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudtasks/v2beta3/2.0.0/com/google/api/services/cloudtasks/v2beta3/model/RetryConfig.java

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ public final class RetryConfig extends com.google.api.client.json.GenericJson {
3434
* if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If
3535
* unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates
3636
* unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](htt
37-
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
37+
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
38+
* Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration` are both
39+
* satisfied. When the task has been attempted `max_attempts` times and when the
40+
* `max_retry_duration` time has passed, no further attempts are made, and the task is deleted. If
41+
* you want your task to retry infinitely, you must set `max_attempts` to -1 and
42+
* `max_retry_duration` to 0.
3843
* The value may be {@code null}.
3944
*/
4045
@com.google.api.client.util.Key
@@ -108,7 +113,12 @@ public final class RetryConfig extends com.google.api.client.json.GenericJson {
108113
* if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If
109114
* unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates
110115
* unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](htt
111-
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
116+
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
117+
* Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration` are both
118+
* satisfied. When the task has been attempted `max_attempts` times and when the
119+
* `max_retry_duration` time has passed, no further attempts are made, and the task is deleted. If
120+
* you want your task to retry infinitely, you must set `max_attempts` to -1 and
121+
* `max_retry_duration` to 0.
112122
* @return value or {@code null} for none
113123
*/
114124
public java.lang.Integer getMaxAttempts() {
@@ -120,7 +130,12 @@ public java.lang.Integer getMaxAttempts() {
120130
* if the first attempt fails, then there will be `max_attempts - 1` retries). Must be >= -1. If
121131
* unspecified when the queue is created, Cloud Tasks will pick the default. -1 indicates
122132
* unlimited attempts. This field has the same meaning as [task_retry_limit in queue.yaml/xml](htt
123-
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters).
133+
* ps://cloud.google.com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
134+
* Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration` are both
135+
* satisfied. When the task has been attempted `max_attempts` times and when the
136+
* `max_retry_duration` time has passed, no further attempts are made, and the task is deleted. If
137+
* you want your task to retry infinitely, you must set `max_attempts` to -1 and
138+
* `max_retry_duration` to 0.
124139
* @param maxAttempts maxAttempts or {@code null} for none
125140
*/
126141
public RetryConfig setMaxAttempts(java.lang.Integer maxAttempts) {

clients/google-api-services-cloudtasks/v2beta3/2.0.0/pom.xml

Lines changed: 4 additions & 4 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-cloudtasks</artifactId>
11-
<version>v2beta3-rev20241111-2.0.0</version>
12-
<name>Cloud Tasks API v2beta3-rev20241111-2.0.0</name>
11+
<version>v2beta3-rev20250115-2.0.0</version>
12+
<name>Cloud Tasks API v2beta3-rev20250115-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.1</version>
128+
<version>2.7.2</version>
129129
</dependency>
130130
</dependencies>
131131

clients/google-api-services-cloudtasks/v2beta3/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-cloudtasks</artifactId>
25-
<version>v2beta3-rev20241111-2.0.0</version>
25+
<version>v2beta3-rev20250115-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-cloudtasks:v2beta3-rev20241111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2beta3-rev20250115-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)