Skip to content

Commit f5bc037

Browse files
1 parent acc83d4 commit f5bc037

File tree

18 files changed

+80
-76
lines changed

18 files changed

+80
-76
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-rev20250411-2.0.0</version>
25+
<version>v2-rev20250914-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-rev20250411-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20250914-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -590,22 +590,22 @@ public List setName(java.lang.String name) {
590590
}
591591

592592
/**
593-
* Optional. A list of extra location types that should be used as conditions for
594-
* controlling the visibility of the locations.
593+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
594+
* is primarily intended for internal usage.
595595
*/
596596
@com.google.api.client.util.Key
597597
private java.util.List<java.lang.String> extraLocationTypes;
598598

599-
/** Optional. A list of extra location types that should be used as conditions for controlling the
600-
visibility of the locations.
599+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
600+
primarily intended for internal usage.
601601
*/
602602
public java.util.List<java.lang.String> getExtraLocationTypes() {
603603
return extraLocationTypes;
604604
}
605605

606606
/**
607-
* Optional. A list of extra location types that should be used as conditions for
608-
* controlling the visibility of the locations.
607+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
608+
* is primarily intended for internal usage.
609609
*/
610610
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
611611
this.extraLocationTypes = extraLocationTypes;
@@ -3130,7 +3130,8 @@ public Delete set(String parameterName, Object value) {
31303130
}
31313131
}
31323132
/**
3133-
* Gets a task.
3133+
* Gets a task. After a task is successfully executed or has exhausted its retry attempts, the task
3134+
* is deleted. A `GetTask` request for a deleted task returns a `NOT_FOUND` error.
31343135
*
31353136
* Create a request for the method "tasks.get".
31363137
*
@@ -3155,7 +3156,8 @@ public class Get extends CloudTasksRequest<com.google.api.services.cloudtasks.v2
31553156
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/queues/[^/]+/tasks/[^/]+$");
31563157

31573158
/**
3158-
* Gets a task.
3159+
* Gets a task. After a task is successfully executed or has exhausted its retry attempts, the
3160+
* task is deleted. A `GetTask` request for a deleted task returns a `NOT_FOUND` error.
31593161
*
31603162
* Create a request for the method "tasks.get".
31613163
*

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public final class CreateTaskRequest extends com.google.api.client.json.GenericJ
5050
* duplication: Explicitly specifying a task ID enables task de-duplication. If a task's ID is
5151
* identical to that of an existing task or a task that was deleted or executed recently then the
5252
* call will fail with ALREADY_EXISTS. The IDs of deleted tasks are not immediately available for
53-
* reuse. It can take up to 4 hours (or 9 days if the task's queue was created using a queue.yaml
53+
* reuse. It can take up to 24 hours (or 9 days if the task's queue was created using a queue.yaml
5454
* or queue.xml) for the task ID to be released and made available again. Because there is an
5555
* extra lookup cost to identify duplicate task names, these CreateTask calls have significantly
5656
* increased latency. Using hashed strings for the task id or for the prefix of the task id is
@@ -99,7 +99,7 @@ public CreateTaskRequest setResponseView(java.lang.String responseView) {
9999
* duplication: Explicitly specifying a task ID enables task de-duplication. If a task's ID is
100100
* identical to that of an existing task or a task that was deleted or executed recently then the
101101
* call will fail with ALREADY_EXISTS. The IDs of deleted tasks are not immediately available for
102-
* reuse. It can take up to 4 hours (or 9 days if the task's queue was created using a queue.yaml
102+
* reuse. It can take up to 24 hours (or 9 days if the task's queue was created using a queue.yaml
103103
* or queue.xml) for the task ID to be released and made available again. Because there is an
104104
* extra lookup cost to identify duplicate task names, these CreateTask calls have significantly
105105
* increased latency. Using hashed strings for the task id or for the prefix of the task id is
@@ -122,7 +122,7 @@ public Task getTask() {
122122
* duplication: Explicitly specifying a task ID enables task de-duplication. If a task's ID is
123123
* identical to that of an existing task or a task that was deleted or executed recently then the
124124
* call will fail with ALREADY_EXISTS. The IDs of deleted tasks are not immediately available for
125-
* reuse. It can take up to 4 hours (or 9 days if the task's queue was created using a queue.yaml
125+
* reuse. It can take up to 24 hours (or 9 days if the task's queue was created using a queue.yaml
126126
* or queue.xml) for the task ID to be released and made available again. Because there is an
127127
* extra lookup cost to identify duplicate task names, these CreateTask calls have significantly
128128
* increased latency. Using hashed strings for the task id or for the prefix of the task id is

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ public final class UriOverride extends com.google.api.client.json.GenericJson {
5050

5151
/**
5252
* Port override. When specified, replaces the port part of the task URI. For instance, for a URI
53-
* http://www.google.com/foo and port=123, the overridden URI becomes
54-
* http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the
55-
* port to 0 (Zero) clears the URI port.
53+
* "https://www.example.com/example" and port=123, the overridden URI becomes
54+
* "https://www.example.com:123/example". Note that the port value must be a positive integer.
55+
* Setting the port to 0 (Zero) clears the URI port.
5656
* The value may be {@code null}.
5757
*/
5858
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -126,9 +126,9 @@ public UriOverride setPathOverride(PathOverride pathOverride) {
126126

127127
/**
128128
* Port override. When specified, replaces the port part of the task URI. For instance, for a URI
129-
* http://www.google.com/foo and port=123, the overridden URI becomes
130-
* http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the
131-
* port to 0 (Zero) clears the URI port.
129+
* "https://www.example.com/example" and port=123, the overridden URI becomes
130+
* "https://www.example.com:123/example". Note that the port value must be a positive integer.
131+
* Setting the port to 0 (Zero) clears the URI port.
132132
* @return value or {@code null} for none
133133
*/
134134
public java.lang.Long getPort() {
@@ -137,9 +137,9 @@ public java.lang.Long getPort() {
137137

138138
/**
139139
* Port override. When specified, replaces the port part of the task URI. For instance, for a URI
140-
* http://www.google.com/foo and port=123, the overridden URI becomes
141-
* http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the
142-
* port to 0 (Zero) clears the URI port.
140+
* "https://www.example.com/example" and port=123, the overridden URI becomes
141+
* "https://www.example.com:123/example". Note that the port value must be a positive integer.
142+
* Setting the port to 0 (Zero) clears the URI port.
143143
* @param port port or {@code null} for none
144144
*/
145145
public UriOverride setPort(java.lang.Long port) {

clients/google-api-services-cloudtasks/v2/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-cloudtasks</artifactId>
11-
<version>v2-rev20250411-2.0.0</version>
12-
<name>Cloud Tasks API v2-rev20250411-2.0.0</name>
11+
<version>v2-rev20250914-2.0.0</version>
12+
<name>Cloud Tasks API v2-rev20250914-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-cloudtasks/v2beta2/2.0.0/com/google/api/services/cloudtasks/v2beta2/CloudTasks.java

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

765765
/**
766-
* Optional. A list of extra location types that should be used as conditions for
767-
* controlling the visibility of the locations.
766+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
767+
* is primarily intended for internal usage.
768768
*/
769769
@com.google.api.client.util.Key
770770
private java.util.List<java.lang.String> extraLocationTypes;
771771

772-
/** Optional. A list of extra location types that should be used as conditions for controlling the
773-
visibility of the locations.
772+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
773+
primarily intended for internal usage.
774774
*/
775775
public java.util.List<java.lang.String> getExtraLocationTypes() {
776776
return extraLocationTypes;
777777
}
778778

779779
/**
780-
* Optional. A list of extra location types that should be used as conditions for
781-
* controlling the visibility of the locations.
780+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
781+
* is primarily intended for internal usage.
782782
*/
783783
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
784784
this.extraLocationTypes = extraLocationTypes;

clients/google-api-services-cloudtasks/v2beta2/2.0.0/com/google/api/services/cloudtasks/v2beta2/model/CreateTaskRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public final class CreateTaskRequest extends com.google.api.client.json.GenericJ
5050
* duplication: Explicitly specifying a task ID enables task de-duplication. If a task's ID is
5151
* identical to that of an existing task or a task that was deleted or completed recently then the
5252
* call will fail with ALREADY_EXISTS. The IDs of deleted tasks are not immediately available for
53-
* reuse. It can take up to 4 hours (or 9 days if the task's queue was created using a queue.yaml
53+
* reuse. It can take up to 24 hours (or 9 days if the task's queue was created using a queue.yaml
5454
* or queue.xml) for the task ID to be released and made available again. Because there is an
5555
* extra lookup cost to identify duplicate task names, these CreateTask calls have significantly
5656
* increased latency. Using hashed strings for the task id or for the prefix of the task id is
@@ -99,7 +99,7 @@ public CreateTaskRequest setResponseView(java.lang.String responseView) {
9999
* duplication: Explicitly specifying a task ID enables task de-duplication. If a task's ID is
100100
* identical to that of an existing task or a task that was deleted or completed recently then the
101101
* call will fail with ALREADY_EXISTS. The IDs of deleted tasks are not immediately available for
102-
* reuse. It can take up to 4 hours (or 9 days if the task's queue was created using a queue.yaml
102+
* reuse. It can take up to 24 hours (or 9 days if the task's queue was created using a queue.yaml
103103
* or queue.xml) for the task ID to be released and made available again. Because there is an
104104
* extra lookup cost to identify duplicate task names, these CreateTask calls have significantly
105105
* increased latency. Using hashed strings for the task id or for the prefix of the task id is
@@ -122,7 +122,7 @@ public Task getTask() {
122122
* duplication: Explicitly specifying a task ID enables task de-duplication. If a task's ID is
123123
* identical to that of an existing task or a task that was deleted or completed recently then the
124124
* call will fail with ALREADY_EXISTS. The IDs of deleted tasks are not immediately available for
125-
* reuse. It can take up to 4 hours (or 9 days if the task's queue was created using a queue.yaml
125+
* reuse. It can take up to 24 hours (or 9 days if the task's queue was created using a queue.yaml
126126
* or queue.xml) for the task ID to be released and made available again. Because there is an
127127
* extra lookup cost to identify duplicate task names, these CreateTask calls have significantly
128128
* increased latency. Using hashed strings for the task id or for the prefix of the task id is

clients/google-api-services-cloudtasks/v2beta2/2.0.0/com/google/api/services/cloudtasks/v2beta2/model/UriOverride.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ public final class UriOverride extends com.google.api.client.json.GenericJson {
5050

5151
/**
5252
* Port override. When specified, replaces the port part of the task URI. For instance, for a URI
53-
* http://www.google.com/foo and port=123, the overridden URI becomes
54-
* http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the
55-
* port to 0 (Zero) clears the URI port.
53+
* "https://www.example.com/example" and port=123, the overridden URI becomes
54+
* "https://www.example.com:123/example". Note that the port value must be a positive integer.
55+
* Setting the port to 0 (Zero) clears the URI port.
5656
* The value may be {@code null}.
5757
*/
5858
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -126,9 +126,9 @@ public UriOverride setPathOverride(PathOverride pathOverride) {
126126

127127
/**
128128
* Port override. When specified, replaces the port part of the task URI. For instance, for a URI
129-
* http://www.google.com/foo and port=123, the overridden URI becomes
130-
* http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the
131-
* port to 0 (Zero) clears the URI port.
129+
* "https://www.example.com/example" and port=123, the overridden URI becomes
130+
* "https://www.example.com:123/example". Note that the port value must be a positive integer.
131+
* Setting the port to 0 (Zero) clears the URI port.
132132
* @return value or {@code null} for none
133133
*/
134134
public java.lang.Long getPort() {
@@ -137,9 +137,9 @@ public java.lang.Long getPort() {
137137

138138
/**
139139
* Port override. When specified, replaces the port part of the task URI. For instance, for a URI
140-
* http://www.google.com/foo and port=123, the overridden URI becomes
141-
* http://www.google.com:123/foo. Note that the port value must be a positive integer. Setting the
142-
* port to 0 (Zero) clears the URI port.
140+
* "https://www.example.com/example" and port=123, the overridden URI becomes
141+
* "https://www.example.com:123/example". Note that the port value must be a positive integer.
142+
* Setting the port to 0 (Zero) clears the URI port.
143143
* @param port port or {@code null} for none
144144
*/
145145
public UriOverride setPort(java.lang.Long port) {

0 commit comments

Comments
 (0)