google-apis-cloudtasks_v2 0.46.0 → 0.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/cloudtasks_v2/classes.rb +27 -24
- data/lib/google/apis/cloudtasks_v2/gem_version.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb93fc32b72df4079c3c97c78fe908fdad07593ffeedf7ca32edb0f54ce65b3d
|
|
4
|
+
data.tar.gz: d067c98e1a8f02c4764ceaffa514a55cbdcc3f0c4302b8b4dbb128083333dffa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 377bb35d735cf77109a114f4b46638f0f25e793bb777aee149061ce7184da8712262df98d8dbe808343407b6fb23474a73fdb0b940a4b84f0549e26e0ff5b391
|
|
7
|
+
data.tar.gz: e880e4361628f984af4243b1f338f2f98e252d47849525d6955af9f8471a4d91186956d13816a09f49056f9e44c4e10f69256489b02d985e2577adfc9fef9c7e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2
|
|
2
2
|
|
|
3
|
+
### v0.47.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260512
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.46.0 (2026-05-10)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260423
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/tasks/) may provide guidanc
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -1328,7 +1328,7 @@ module Google
|
|
|
1328
1328
|
attr_accessor :max_concurrent_dispatches
|
|
1329
1329
|
|
|
1330
1330
|
# The maximum rate at which tasks are dispatched from this queue. If unspecified
|
|
1331
|
-
# when the queue is created, Cloud Tasks will pick the default.
|
|
1331
|
+
# when the queue is created, Cloud Tasks will pick the default. The maximum
|
|
1332
1332
|
# allowed value is 500. This field has the same meaning as [rate in queue.yaml/
|
|
1333
1333
|
# xml](https://cloud.google.com/appengine/docs/standard/python/config/queueref#
|
|
1334
1334
|
# rate).
|
|
@@ -1365,29 +1365,31 @@ module Google
|
|
|
1365
1365
|
class RetryConfig
|
|
1366
1366
|
include Google::Apis::Core::Hashable
|
|
1367
1367
|
|
|
1368
|
-
# Number of attempts per task
|
|
1369
|
-
#
|
|
1370
|
-
#
|
|
1371
|
-
#
|
|
1372
|
-
# the
|
|
1373
|
-
#
|
|
1374
|
-
#
|
|
1375
|
-
#
|
|
1376
|
-
#
|
|
1377
|
-
#
|
|
1378
|
-
#
|
|
1368
|
+
# Number of attempts per task, including the first attempt. (If the first
|
|
1369
|
+
# attempt fails, there will be `max_attempts - 1` retries.) Must be greater than
|
|
1370
|
+
# or equal to -1, which indicates unlimited attempts. Cloud Tasks stops retrying
|
|
1371
|
+
# only when `max_attempts` and `max_retry_duration` are both satisfied, or when
|
|
1372
|
+
# the task is successfully executed. When the task has been attempted `
|
|
1373
|
+
# max_attempts` times and when the `max_retry_duration` time has passed, no
|
|
1374
|
+
# further attempts are made, and the task is deleted. If `max_attempts` is set
|
|
1375
|
+
# to -1 and `max_retry_duration` is set to 0, the task is retried until the [
|
|
1376
|
+
# maximum task retention](https://docs.cloud.google.com/tasks/docs/quotas#limits)
|
|
1377
|
+
# limit is reached. If unspecified when the queue is created, Cloud Tasks will
|
|
1378
|
+
# pick the default. This field has the same meaning as [task_retry_limit in
|
|
1379
|
+
# queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/
|
|
1380
|
+
# queueref#retry_parameters).
|
|
1379
1381
|
# Corresponds to the JSON property `maxAttempts`
|
|
1380
1382
|
# @return [Fixnum]
|
|
1381
1383
|
attr_accessor :max_attempts
|
|
1382
1384
|
|
|
1383
1385
|
# A task will be scheduled for retry between min_backoff and max_backoff
|
|
1384
1386
|
# duration after it fails, if the queue's RetryConfig specifies that the task
|
|
1385
|
-
# should be retried.
|
|
1386
|
-
# pick the default. The value must be given as a string that indicates the
|
|
1387
|
+
# should be retried. The value must be given as a string that indicates the
|
|
1387
1388
|
# length of time (in seconds) followed by `s` (for "seconds"). For more
|
|
1388
1389
|
# information on the format, see the documentation for [Duration](https://
|
|
1389
1390
|
# protobuf.dev/reference/protobuf/google.protobuf/#duration). `max_backoff` will
|
|
1390
|
-
# be truncated to the nearest second.
|
|
1391
|
+
# be truncated to the nearest second. If unspecified when the queue is created,
|
|
1392
|
+
# Cloud Tasks will pick the default. This field has the same meaning as [
|
|
1391
1393
|
# max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/
|
|
1392
1394
|
# standard/python/config/queueref#retry_parameters).
|
|
1393
1395
|
# Corresponds to the JSON property `maxBackoff`
|
|
@@ -1413,14 +1415,15 @@ module Google
|
|
|
1413
1415
|
# If positive, `max_retry_duration` specifies the time limit for retrying a
|
|
1414
1416
|
# failed task, measured from when the task was first attempted. Once `
|
|
1415
1417
|
# max_retry_duration` time has passed *and* the task has been attempted
|
|
1416
|
-
# max_attempts times, no further attempts
|
|
1417
|
-
#
|
|
1418
|
-
#
|
|
1419
|
-
# as a string that indicates the length of time (in seconds) followed
|
|
1420
|
-
# for "seconds"). For the maximum possible value or the format, see the
|
|
1418
|
+
# max_attempts times, no further attempts are made and the task is deleted. A
|
|
1419
|
+
# zero (0) indicates an unlimited duration, up to the [maximum task retention](
|
|
1420
|
+
# https://docs.cloud.google.com/tasks/docs/quotas#limits) limit. The value must
|
|
1421
|
+
# be given as a string that indicates the length of time (in seconds) followed
|
|
1422
|
+
# by `s` (for "seconds"). For the maximum possible value or the format, see the
|
|
1421
1423
|
# documentation for [Duration](https://protobuf.dev/reference/protobuf/google.
|
|
1422
1424
|
# protobuf/#duration). `max_retry_duration` will be truncated to the nearest
|
|
1423
|
-
# second.
|
|
1425
|
+
# second. If unspecified when the queue is created, Cloud Tasks will pick the
|
|
1426
|
+
# default. This field has the same meaning as [task_age_limit in queue.yaml/xml](
|
|
1424
1427
|
# https://cloud.google.com/appengine/docs/standard/python/config/queueref#
|
|
1425
1428
|
# retry_parameters).
|
|
1426
1429
|
# Corresponds to the JSON property `maxRetryDuration`
|
|
@@ -1429,12 +1432,12 @@ module Google
|
|
|
1429
1432
|
|
|
1430
1433
|
# A task will be scheduled for retry between min_backoff and max_backoff
|
|
1431
1434
|
# duration after it fails, if the queue's RetryConfig specifies that the task
|
|
1432
|
-
# should be retried.
|
|
1433
|
-
# pick the default. The value must be given as a string that indicates the
|
|
1435
|
+
# should be retried. The value must be given as a string that indicates the
|
|
1434
1436
|
# length of time (in seconds) followed by `s` (for "seconds"). For more
|
|
1435
1437
|
# information on the format, see the documentation for [Duration](https://
|
|
1436
1438
|
# protobuf.dev/reference/protobuf/google.protobuf/#duration). `min_backoff` will
|
|
1437
|
-
# be truncated to the nearest second.
|
|
1439
|
+
# be truncated to the nearest second. If unspecified when the queue is created,
|
|
1440
|
+
# Cloud Tasks will pick the default. This field has the same meaning as [
|
|
1438
1441
|
# min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/
|
|
1439
1442
|
# standard/python/config/queueref#retry_parameters).
|
|
1440
1443
|
# Corresponds to the JSON property `minBackoff`
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudtasksV2
|
|
18
18
|
# Version of the google-apis-cloudtasks_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.47.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260512"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudtasks_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.47.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.47.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|