Skip to content

Commit 4e8d4d2

Browse files
1 parent 0493992 commit 4e8d4d2

File tree

9 files changed

+59
-41
lines changed

9 files changed

+59
-41
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-rev20251021-2.0.0</version>
25+
<version>v2-rev20260306-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-rev20251021-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20260306-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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,10 @@ public GetCmekConfig set(String parameterName, Object value) {
457457
}
458458
}
459459
/**
460-
* Lists information about the supported locations for this service.
460+
* Lists information about the supported locations for this service. This method can be called in
461+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
462+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
463+
* public locations as well as private or other locations specifically visible to the project.
461464
*
462465
* Create a request for the method "locations.list".
463466
*
@@ -481,7 +484,10 @@ public class List extends CloudTasksRequest<com.google.api.services.cloudtasks.v
481484
java.util.regex.Pattern.compile("^projects/[^/]+$");
482485

483486
/**
484-
* Lists information about the supported locations for this service.
487+
* Lists information about the supported locations for this service. This method can be called in
488+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
489+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
490+
* public locations as well as private or other locations specifically visible to the project.
485491
*
486492
* Create a request for the method "locations.list".
487493
*
@@ -682,7 +688,7 @@ public List set(String parameterName, Object value) {
682688
}
683689
}
684690
/**
685-
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key assotiated with the
691+
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key associated with the
686692
* Cloud Tasks location (Creates if the key does not already exist). All new tasks created in the
687693
* location will be encrypted at-rest with the KMS-key provided in the config.
688694
*
@@ -710,7 +716,7 @@ public class UpdateCmekConfig extends CloudTasksRequest<com.google.api.services.
710716
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/cmekConfig$");
711717

712718
/**
713-
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key assotiated with
719+
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key associated with
714720
* the Cloud Tasks location (Creates if the key does not already exist). All new tasks created in
715721
* the location will be encrypted at-rest with the KMS-key provided in the config.
716722
*

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

Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,15 @@ public final class RateLimits extends com.google.api.client.json.GenericJson {
4040
* dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by
4141
* `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks
4242
* will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously
43-
* refilled with new tokens based on max_dispatches_per_second. Cloud Tasks will pick the value of
44-
* `max_burst_size` based on the value of max_dispatches_per_second. For queues that were created
45-
* or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.goo
46-
* gle.com/appengine/docs/standard/python/config/queueref#bucket_size). Since `max_burst_size` is
47-
* output only, if UpdateQueue is called on a queue created by `queue.yaml/xml`, `max_burst_size`
48-
* will be reset based on the value of max_dispatches_per_second, regardless of whether
49-
* max_dispatches_per_second is updated.
43+
* refilled with new tokens based on `max_dispatches_per_second`. Cloud Tasks automatically sets
44+
* an appropriate `max_burst_size` based on the value of `max_dispatches_per_second`. The value is
45+
* dynamically optimized to ensure queue stability and throughput. It is generally at least equal
46+
* to `max_dispatches_per_second` but might be higher to accommodate bursts of traffic. For queues
47+
* that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size]
48+
* (https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). Since
49+
* `max_burst_size` is output only, if UpdateQueue is called on a queue created by
50+
* `queue.yaml/xml`, `max_burst_size` will be reset based on the value of
51+
* `max_dispatches_per_second`, regardless of whether `max_dispatches_per_second` is updated.
5052
* The value may be {@code null}.
5153
*/
5254
@com.google.api.client.util.Key
@@ -83,13 +85,15 @@ public final class RateLimits extends com.google.api.client.json.GenericJson {
8385
* dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by
8486
* `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks
8587
* will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously
86-
* refilled with new tokens based on max_dispatches_per_second. Cloud Tasks will pick the value of
87-
* `max_burst_size` based on the value of max_dispatches_per_second. For queues that were created
88-
* or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.goo
89-
* gle.com/appengine/docs/standard/python/config/queueref#bucket_size). Since `max_burst_size` is
90-
* output only, if UpdateQueue is called on a queue created by `queue.yaml/xml`, `max_burst_size`
91-
* will be reset based on the value of max_dispatches_per_second, regardless of whether
92-
* max_dispatches_per_second is updated.
88+
* refilled with new tokens based on `max_dispatches_per_second`. Cloud Tasks automatically sets
89+
* an appropriate `max_burst_size` based on the value of `max_dispatches_per_second`. The value is
90+
* dynamically optimized to ensure queue stability and throughput. It is generally at least equal
91+
* to `max_dispatches_per_second` but might be higher to accommodate bursts of traffic. For queues
92+
* that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size]
93+
* (https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). Since
94+
* `max_burst_size` is output only, if UpdateQueue is called on a queue created by
95+
* `queue.yaml/xml`, `max_burst_size` will be reset based on the value of
96+
* `max_dispatches_per_second`, regardless of whether `max_dispatches_per_second` is updated.
9397
* @return value or {@code null} for none
9498
*/
9599
public java.lang.Integer getMaxBurstSize() {
@@ -105,13 +109,15 @@ public java.lang.Integer getMaxBurstSize() {
105109
* dispatches. Each queue has a token bucket that holds tokens, up to the maximum specified by
106110
* `max_burst_size`. Each time a task is dispatched, a token is removed from the bucket. Tasks
107111
* will be dispatched until the queue's bucket runs out of tokens. The bucket will be continuously
108-
* refilled with new tokens based on max_dispatches_per_second. Cloud Tasks will pick the value of
109-
* `max_burst_size` based on the value of max_dispatches_per_second. For queues that were created
110-
* or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size](https://cloud.goo
111-
* gle.com/appengine/docs/standard/python/config/queueref#bucket_size). Since `max_burst_size` is
112-
* output only, if UpdateQueue is called on a queue created by `queue.yaml/xml`, `max_burst_size`
113-
* will be reset based on the value of max_dispatches_per_second, regardless of whether
114-
* max_dispatches_per_second is updated.
112+
* refilled with new tokens based on `max_dispatches_per_second`. Cloud Tasks automatically sets
113+
* an appropriate `max_burst_size` based on the value of `max_dispatches_per_second`. The value is
114+
* dynamically optimized to ensure queue stability and throughput. It is generally at least equal
115+
* to `max_dispatches_per_second` but might be higher to accommodate bursts of traffic. For queues
116+
* that were created or updated using `queue.yaml/xml`, `max_burst_size` is equal to [bucket_size]
117+
* (https://cloud.google.com/appengine/docs/standard/python/config/queueref#bucket_size). Since
118+
* `max_burst_size` is output only, if UpdateQueue is called on a queue created by
119+
* `queue.yaml/xml`, `max_burst_size` will be reset based on the value of
120+
* `max_dispatches_per_second`, regardless of whether `max_dispatches_per_second` is updated.
115121
* @param maxBurstSize maxBurstSize or {@code null} for none
116122
*/
117123
public RateLimits setMaxBurstSize(java.lang.Integer maxBurstSize) {

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-rev20251021-2.0.0</version>
12-
<name>Cloud Tasks API v2-rev20251021-2.0.0</name>
11+
<version>v2-rev20260306-2.0.0</version>
12+
<name>Cloud Tasks API v2-rev20260306-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-rev20251021-2.0.0</version>
25+
<version>v2-rev20260306-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-rev20251021-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2-rev20260306-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-rev20251021-2.0.0</version>
25+
<version>v2beta2-rev20260306-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-rev20251021-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudtasks:v2beta2-rev20260306-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: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,10 @@ public GetCmekConfig set(String parameterName, Object value) {
630630
}
631631
}
632632
/**
633-
* Lists information about the supported locations for this service.
633+
* Lists information about the supported locations for this service. This method can be called in
634+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
635+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
636+
* public locations as well as private or other locations specifically visible to the project.
634637
*
635638
* Create a request for the method "locations.list".
636639
*
@@ -654,7 +657,10 @@ public class List extends CloudTasksRequest<com.google.api.services.cloudtasks.v
654657
java.util.regex.Pattern.compile("^projects/[^/]+$");
655658

656659
/**
657-
* Lists information about the supported locations for this service.
660+
* Lists information about the supported locations for this service. This method can be called in
661+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
662+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
663+
* public locations as well as private or other locations specifically visible to the project.
658664
*
659665
* Create a request for the method "locations.list".
660666
*
@@ -855,7 +861,7 @@ public List set(String parameterName, Object value) {
855861
}
856862
}
857863
/**
858-
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key assotiated with the
864+
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key associated with the
859865
* Cloud Tasks location (Creates if the key does not already exist). All new tasks created in the
860866
* location will be encrypted at-rest with the KMS-key provided in the config.
861867
*
@@ -883,7 +889,7 @@ public class UpdateCmekConfig extends CloudTasksRequest<com.google.api.services.
883889
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/cmekConfig$");
884890

885891
/**
886-
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key assotiated with
892+
* Creates or Updates a CMEK config. Updates the Customer Managed Encryption Key associated with
887893
* the Cloud Tasks location (Creates if the key does not already exist). All new tasks created in
888894
* the location will be encrypted at-rest with the KMS-key provided in the config.
889895
*

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
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-cloudtasks</artifactId>
11-
<version>v2beta2-rev20251021-2.0.0</version>
12-
<name>Cloud Tasks API v2beta2-rev20251021-2.0.0</name>
11+
<version>v2beta2-rev20260306-2.0.0</version>
12+
<name>Cloud Tasks API v2beta2-rev20260306-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)