google-apis-cloudtasks_v2beta3 0.50.0 → 0.52.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3dee392b261d2249d642619d5ebefb714fc0f7c85f731c516583276d54a35ba5
|
|
4
|
+
data.tar.gz: b4efc6911e75e712a4612aba9bd2a83a17136ecff5623533e9ed57a167db7a02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81f50c5ee1bdbc0228396d9b91ff32b03ae618fefa8e58582cd1e65b59ce9a4ce4f8877da3e9991e17945d1b855e7af03e1066f080550742377aad7edad6f3d6
|
|
7
|
+
data.tar.gz: 47bbcde4a12dbcfee38b96792d9e4274ff4f0eec4c6eb0088856b262a48d88962088f4fb8d5c8c5afa157989cf3bec8508fbefabec2fa16673c53c28d957b3fe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2beta3
|
|
2
2
|
|
|
3
|
+
### v0.52.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260512
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.51.0 (2026-05-10)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260423
|
|
11
|
+
|
|
3
12
|
### v0.50.0 (2026-04-19)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260330
|
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
|
|
|
@@ -1483,7 +1483,7 @@ module Google
|
|
|
1483
1483
|
attr_accessor :max_concurrent_dispatches
|
|
1484
1484
|
|
|
1485
1485
|
# The maximum rate at which tasks are dispatched from this queue. If unspecified
|
|
1486
|
-
# when the queue is created, Cloud Tasks will pick the default.
|
|
1486
|
+
# when the queue is created, Cloud Tasks will pick the default. For App Engine
|
|
1487
1487
|
# queues, the maximum allowed value is 500. This field has the same meaning as [
|
|
1488
1488
|
# rate in queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/
|
|
1489
1489
|
# python/config/queueref#rate).
|
|
@@ -1520,29 +1520,31 @@ module Google
|
|
|
1520
1520
|
class RetryConfig
|
|
1521
1521
|
include Google::Apis::Core::Hashable
|
|
1522
1522
|
|
|
1523
|
-
# Number of attempts per task
|
|
1524
|
-
#
|
|
1525
|
-
#
|
|
1526
|
-
#
|
|
1527
|
-
# the
|
|
1528
|
-
#
|
|
1529
|
-
#
|
|
1530
|
-
#
|
|
1531
|
-
#
|
|
1532
|
-
#
|
|
1533
|
-
#
|
|
1523
|
+
# Number of attempts per task, including the first attempt. (If the first
|
|
1524
|
+
# attempt fails, there will be `max_attempts - 1` retries.) Must be greater than
|
|
1525
|
+
# or equal to -1, which indicates unlimited attempts. Cloud Tasks stops retrying
|
|
1526
|
+
# only when `max_attempts` and `max_retry_duration` are both satisfied, or when
|
|
1527
|
+
# the task is successfully executed. When the task has been attempted `
|
|
1528
|
+
# max_attempts` times and when the `max_retry_duration` time has passed, no
|
|
1529
|
+
# further attempts are made, and the task is deleted. If `max_attempts` is set
|
|
1530
|
+
# to -1 and `max_retry_duration` is set to 0, the task is retried until the [
|
|
1531
|
+
# maximum task retention](https://docs.cloud.google.com/tasks/docs/quotas#limits)
|
|
1532
|
+
# limit is reached. If unspecified when the queue is created, Cloud Tasks will
|
|
1533
|
+
# pick the default. This field has the same meaning as [task_retry_limit in
|
|
1534
|
+
# queue.yaml/xml](https://cloud.google.com/appengine/docs/standard/python/config/
|
|
1535
|
+
# queueref#retry_parameters).
|
|
1534
1536
|
# Corresponds to the JSON property `maxAttempts`
|
|
1535
1537
|
# @return [Fixnum]
|
|
1536
1538
|
attr_accessor :max_attempts
|
|
1537
1539
|
|
|
1538
1540
|
# A task will be scheduled for retry between min_backoff and max_backoff
|
|
1539
1541
|
# duration after it fails, if the queue's RetryConfig specifies that the task
|
|
1540
|
-
# should be retried.
|
|
1541
|
-
# pick the default. The value must be given as a string that indicates the
|
|
1542
|
+
# should be retried. The value must be given as a string that indicates the
|
|
1542
1543
|
# length of time (in seconds) followed by `s` (for "seconds"). For more
|
|
1543
1544
|
# information on the format, see the documentation for [Duration](https://
|
|
1544
1545
|
# protobuf.dev/reference/protobuf/google.protobuf/#duration). `max_backoff` will
|
|
1545
|
-
# be truncated to the nearest second.
|
|
1546
|
+
# be truncated to the nearest second. If unspecified when the queue is created,
|
|
1547
|
+
# Cloud Tasks will pick the default. This field has the same meaning as [
|
|
1546
1548
|
# max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/
|
|
1547
1549
|
# standard/python/config/queueref#retry_parameters).
|
|
1548
1550
|
# Corresponds to the JSON property `maxBackoff`
|
|
@@ -1568,14 +1570,15 @@ module Google
|
|
|
1568
1570
|
# If positive, `max_retry_duration` specifies the time limit for retrying a
|
|
1569
1571
|
# failed task, measured from when the task was first attempted. Once `
|
|
1570
1572
|
# max_retry_duration` time has passed *and* the task has been attempted
|
|
1571
|
-
# max_attempts times, no further attempts
|
|
1572
|
-
#
|
|
1573
|
-
#
|
|
1574
|
-
# as a string that indicates the length of time (in seconds) followed
|
|
1575
|
-
# for "seconds"). For the maximum possible value or the format, see the
|
|
1573
|
+
# max_attempts times, no further attempts are made and the task is deleted. A
|
|
1574
|
+
# zero (0) indicates an unlimited duration, up to the [maximum task retention](
|
|
1575
|
+
# https://docs.cloud.google.com/tasks/docs/quotas#limits) limit. The value must
|
|
1576
|
+
# be given as a string that indicates the length of time (in seconds) followed
|
|
1577
|
+
# by `s` (for "seconds"). For the maximum possible value or the format, see the
|
|
1576
1578
|
# documentation for [Duration](https://protobuf.dev/reference/protobuf/google.
|
|
1577
1579
|
# protobuf/#duration). `max_retry_duration` will be truncated to the nearest
|
|
1578
|
-
# second.
|
|
1580
|
+
# second. If unspecified when the queue is created, Cloud Tasks will pick the
|
|
1581
|
+
# default. This field has the same meaning as [task_age_limit in queue.yaml/xml](
|
|
1579
1582
|
# https://cloud.google.com/appengine/docs/standard/python/config/queueref#
|
|
1580
1583
|
# retry_parameters).
|
|
1581
1584
|
# Corresponds to the JSON property `maxRetryDuration`
|
|
@@ -1584,12 +1587,12 @@ module Google
|
|
|
1584
1587
|
|
|
1585
1588
|
# A task will be scheduled for retry between min_backoff and max_backoff
|
|
1586
1589
|
# duration after it fails, if the queue's RetryConfig specifies that the task
|
|
1587
|
-
# should be retried.
|
|
1588
|
-
# pick the default. The value must be given as a string that indicates the
|
|
1590
|
+
# should be retried. The value must be given as a string that indicates the
|
|
1589
1591
|
# length of time (in seconds) followed by `s` (for "seconds"). For more
|
|
1590
1592
|
# information on the format, see the documentation for [Duration](https://
|
|
1591
1593
|
# protobuf.dev/reference/protobuf/google.protobuf/#duration). `min_backoff` will
|
|
1592
|
-
# be truncated to the nearest second.
|
|
1594
|
+
# be truncated to the nearest second. If unspecified when the queue is created,
|
|
1595
|
+
# Cloud Tasks will pick the default. This field has the same meaning as [
|
|
1593
1596
|
# min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/
|
|
1594
1597
|
# standard/python/config/queueref#retry_parameters).
|
|
1595
1598
|
# Corresponds to the JSON property `minBackoff`
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudtasksV2beta3
|
|
18
18
|
# Version of the google-apis-cloudtasks_v2beta3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.52.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
|
|
@@ -114,8 +114,8 @@ module Google
|
|
|
114
114
|
end
|
|
115
115
|
|
|
116
116
|
# Lists information about the supported locations for this service. This method
|
|
117
|
-
# lists locations based on the resource scope provided in the
|
|
118
|
-
# ListLocationsRequest.name
|
|
117
|
+
# lists locations based on the resource scope provided in the
|
|
118
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
119
119
|
# the method lists the public locations available to all projects. * **Project-
|
|
120
120
|
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
121
121
|
# method lists locations visible to that specific project. This includes public,
|
|
@@ -126,8 +126,8 @@ module Google
|
|
|
126
126
|
# @param [String] name
|
|
127
127
|
# The resource that owns the locations collection, if applicable.
|
|
128
128
|
# @param [Array<String>, String] extra_location_types
|
|
129
|
-
# Optional. Do not use this field
|
|
130
|
-
#
|
|
129
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
130
|
+
# is primarily for internal usage.
|
|
131
131
|
# @param [String] filter
|
|
132
132
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
133
133
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudtasks_v2beta3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.52.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_v2beta3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.52.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2beta3
|
|
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
|
- - ">="
|