Skip to content

Commit 3dba997

Browse files
yoshi-automationchingor13
authored andcommitted
Regenerate cloudtasks client (googleapis#704)
1 parent 43624c2 commit 3dba997

File tree

10 files changed

+1226
-1202
lines changed

10 files changed

+1226
-1202
lines changed

clients/1.26.0/google-api-services-cloudtasks/v2beta3/com/google/api/services/cloudtasks/v2beta3/model/Attempt.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final class Attempt extends com.google.api.client.json.GenericJson {
3939
private String dispatchTime;
4040

4141
/**
42-
* Output only. The response from the target for this attempt.
42+
* Output only. The response from the worker for this attempt.
4343
*
4444
* If `response_time` is unset, then the task has not been attempted or is currently running and
4545
* the `response_status` field is meaningless.
@@ -88,7 +88,7 @@ public Attempt setDispatchTime(String dispatchTime) {
8888
}
8989

9090
/**
91-
* Output only. The response from the target for this attempt.
91+
* Output only. The response from the worker for this attempt.
9292
*
9393
* If `response_time` is unset, then the task has not been attempted or is currently running and
9494
* the `response_status` field is meaningless.
@@ -99,7 +99,7 @@ public Status getResponseStatus() {
9999
}
100100

101101
/**
102-
* Output only. The response from the target for this attempt.
102+
* Output only. The response from the worker for this attempt.
103103
*
104104
* If `response_time` is unset, then the task has not been attempted or is currently running and
105105
* the `response_status` field is meaningless.

clients/1.26.0/google-api-services-cloudtasks/v2beta3/com/google/api/services/cloudtasks/v2beta3/model/Queue.java

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@
3131
public final class Queue extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* App Engine HTTP queue.
35-
*
36-
* An App Engine queue is a queue that has an AppEngineHttpQueue type.
34+
* AppEngineHttpQueue settings apply only to AppEngine tasks in this queue.
3735
* The value may be {@code null}.
3836
*/
3937
@com.google.api.client.util.Key
@@ -78,13 +76,20 @@ public final class Queue extends com.google.api.client.json.GenericJson {
7876
/**
7977
* Rate limits for task dispatches.
8078
*
81-
* rate_limits and retry_config are related because they both control task attempts however they
82-
* control how tasks are attempted in different ways:
79+
* rate_limits and retry_config are related because they both control task attempts. However they
80+
* control task attempts in different ways:
8381
*
8482
* * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched
8583
* from the queue, regardless of whether the dispatch is from a first attempt or a retry). *
8684
* retry_config controls what happens to particular a task after its first attempt fails. That
8785
* is, retry_config controls task retries (the second attempt, third attempt, etc).
86+
*
87+
* The queue's actual dispatch rate is the result of:
88+
*
89+
* * Number of tasks in the queue * User-specified throttling: rate limits retry configuration,
90+
* and the queue's state. * System throttling due to `429` (Too Many Requests) or `503` (Service
91+
* Unavailable) responses from the worker, high error rates, or to smooth sudden large traffic
92+
* spikes.
8893
* The value may be {@code null}.
8994
*/
9095
@com.google.api.client.util.Key
@@ -117,19 +122,15 @@ public final class Queue extends com.google.api.client.json.GenericJson {
117122
private java.lang.String state;
118123

119124
/**
120-
* App Engine HTTP queue.
121-
*
122-
* An App Engine queue is a queue that has an AppEngineHttpQueue type.
125+
* AppEngineHttpQueue settings apply only to AppEngine tasks in this queue.
123126
* @return value or {@code null} for none
124127
*/
125128
public AppEngineHttpQueue getAppEngineHttpQueue() {
126129
return appEngineHttpQueue;
127130
}
128131

129132
/**
130-
* App Engine HTTP queue.
131-
*
132-
* An App Engine queue is a queue that has an AppEngineHttpQueue type.
133+
* AppEngineHttpQueue settings apply only to AppEngine tasks in this queue.
133134
* @param appEngineHttpQueue appEngineHttpQueue or {@code null} for none
134135
*/
135136
public Queue setAppEngineHttpQueue(AppEngineHttpQueue appEngineHttpQueue) {
@@ -218,13 +219,20 @@ public Queue setPurgeTime(String purgeTime) {
218219
/**
219220
* Rate limits for task dispatches.
220221
*
221-
* rate_limits and retry_config are related because they both control task attempts however they
222-
* control how tasks are attempted in different ways:
222+
* rate_limits and retry_config are related because they both control task attempts. However they
223+
* control task attempts in different ways:
223224
*
224225
* * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched
225226
* from the queue, regardless of whether the dispatch is from a first attempt or a retry). *
226227
* retry_config controls what happens to particular a task after its first attempt fails. That
227228
* is, retry_config controls task retries (the second attempt, third attempt, etc).
229+
*
230+
* The queue's actual dispatch rate is the result of:
231+
*
232+
* * Number of tasks in the queue * User-specified throttling: rate limits retry configuration,
233+
* and the queue's state. * System throttling due to `429` (Too Many Requests) or `503` (Service
234+
* Unavailable) responses from the worker, high error rates, or to smooth sudden large traffic
235+
* spikes.
228236
* @return value or {@code null} for none
229237
*/
230238
public RateLimits getRateLimits() {
@@ -234,13 +242,20 @@ public RateLimits getRateLimits() {
234242
/**
235243
* Rate limits for task dispatches.
236244
*
237-
* rate_limits and retry_config are related because they both control task attempts however they
238-
* control how tasks are attempted in different ways:
245+
* rate_limits and retry_config are related because they both control task attempts. However they
246+
* control task attempts in different ways:
239247
*
240248
* * rate_limits controls the total rate of dispatches from a queue (i.e. all traffic dispatched
241249
* from the queue, regardless of whether the dispatch is from a first attempt or a retry). *
242250
* retry_config controls what happens to particular a task after its first attempt fails. That
243251
* is, retry_config controls task retries (the second attempt, third attempt, etc).
252+
*
253+
* The queue's actual dispatch rate is the result of:
254+
*
255+
* * Number of tasks in the queue * User-specified throttling: rate limits retry configuration,
256+
* and the queue's state. * System throttling due to `429` (Too Many Requests) or `503` (Service
257+
* Unavailable) responses from the worker, high error rates, or to smooth sudden large traffic
258+
* spikes.
244259
* @param rateLimits rateLimits or {@code null} for none
245260
*/
246261
public Queue setRateLimits(RateLimits rateLimits) {

clients/1.26.0/google-api-services-cloudtasks/v2beta3/com/google/api/services/cloudtasks/v2beta3/model/Task.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
public final class Task extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* App Engine HTTP request that is sent to the task's target. Can be set only if
34-
* app_engine_http_queue is set on the queue.
33+
* HTTP request that is sent to the App Engine app handler.
3534
*
3635
* An App Engine task is a task that has AppEngineHttpRequest set.
3736
* The value may be {@code null}.
@@ -121,8 +120,7 @@ public final class Task extends com.google.api.client.json.GenericJson {
121120
private java.lang.String view;
122121

123122
/**
124-
* App Engine HTTP request that is sent to the task's target. Can be set only if
125-
* app_engine_http_queue is set on the queue.
123+
* HTTP request that is sent to the App Engine app handler.
126124
*
127125
* An App Engine task is a task that has AppEngineHttpRequest set.
128126
* @return value or {@code null} for none
@@ -132,8 +130,7 @@ public AppEngineHttpRequest getAppEngineHttpRequest() {
132130
}
133131

134132
/**
135-
* App Engine HTTP request that is sent to the task's target. Can be set only if
136-
* app_engine_http_queue is set on the queue.
133+
* HTTP request that is sent to the App Engine app handler.
137134
*
138135
* An App Engine task is a task that has AppEngineHttpRequest set.
139136
* @param appEngineHttpRequest appEngineHttpRequest or {@code null} for none

clients/1.26.0/google-api-services-cloudtasks/v2beta3/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>v2beta3-rev20181022-1.26.0</version>
12-
<name>Cloud Tasks API v2beta3-rev20181022-1.26.0</name>
11+
<version>v2beta3-rev20190104-1.26.0</version>
12+
<name>Cloud Tasks API v2beta3-rev20190104-1.26.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)