google-apis-cloudtasks_v2beta3 0.41.0 → 0.43.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 +10 -0
- data/lib/google/apis/cloudtasks_v2beta3/classes.rb +10 -4
- data/lib/google/apis/cloudtasks_v2beta3/gem_version.rb +3 -3
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ef8484acb345d3859fdc474484a32832e56f3bcd42051fc92d2b7537a696b90
|
4
|
+
data.tar.gz: e322db5127d88919d4f1556ac0d67a7b2bef9c521a7c291f075de3c16a14aebe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6a2bee2001bb55438025b6586c0336fdf23fcbd1127a31b289dbada1a5c665c26f84918d122210af3ef42a26235cb7cfa7f7fb5fcbc9eae00bf2ceb005054eb
|
7
|
+
data.tar.gz: b3700ed52926bb45e59d4db984aeee2a94892081712bd8543497663e1ac762d329210feaa9181ac33ba288125ca3ebe454567bf44bc29010016c68890b1c1e59
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2beta3
|
2
2
|
|
3
|
+
### v0.43.0 (2025-01-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250115
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.42.0 (2024-12-02)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241111
|
11
|
+
* Regenerated using generator version 0.15.1
|
12
|
+
|
3
13
|
### v0.41.0 (2024-05-19)
|
4
14
|
|
5
15
|
* Regenerated using generator version 0.15.0
|
@@ -744,7 +744,7 @@ module Google
|
|
744
744
|
# headers will be ignored or replaced. A partial list of headers that will be
|
745
745
|
# ignored or replaced is: * Any header that is prefixed with "X-CloudTasks-"
|
746
746
|
# will be treated as service header. Service headers define properties of the
|
747
|
-
# task and are predefined in
|
747
|
+
# task and are predefined in Cloud Tasks. * Host: This will be computed by Cloud
|
748
748
|
# Tasks and derived from HttpRequest.url. * Content-Length: This will be
|
749
749
|
# computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-
|
750
750
|
# Tasks"`. * `X-Google-*`: Google use only. * `X-AppEngine-*`: Google use only. `
|
@@ -832,8 +832,9 @@ module Google
|
|
832
832
|
attr_accessor :header_overrides
|
833
833
|
|
834
834
|
# The HTTP method to use for the request. When specified, it overrides
|
835
|
-
# HttpRequest for the task. Note that if the value is set to
|
836
|
-
# HttpRequest of the task will be ignored at execution
|
835
|
+
# HttpRequest.http_method for the task. Note that if the value is set to
|
836
|
+
# HttpMethod.GET the HttpRequest.body of the task will be ignored at execution
|
837
|
+
# time.
|
837
838
|
# Corresponds to the JSON property `httpMethod`
|
838
839
|
# @return [String]
|
839
840
|
attr_accessor :http_method
|
@@ -1523,7 +1524,12 @@ module Google
|
|
1523
1524
|
# 1` retries). Must be >= -1. If unspecified when the queue is created, Cloud
|
1524
1525
|
# Tasks will pick the default. -1 indicates unlimited attempts. This field has
|
1525
1526
|
# the same meaning as [task_retry_limit in queue.yaml/xml](https://cloud.google.
|
1526
|
-
# com/appengine/docs/standard/python/config/queueref#retry_parameters).
|
1527
|
+
# com/appengine/docs/standard/python/config/queueref#retry_parameters). Note:
|
1528
|
+
# Cloud Tasks stops retrying only when `max_attempts` and `max_retry_duration`
|
1529
|
+
# are both satisfied. When the task has been attempted `max_attempts` times and
|
1530
|
+
# when the `max_retry_duration` time has passed, no further attempts are made,
|
1531
|
+
# and the task is deleted. If you want your task to retry infinitely, you must
|
1532
|
+
# set `max_attempts` to -1 and `max_retry_duration` to 0.
|
1527
1533
|
# Corresponds to the JSON property `maxAttempts`
|
1528
1534
|
# @return [Fixnum]
|
1529
1535
|
attr_accessor :max_attempts
|
@@ -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.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250115"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2beta3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.43.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2beta3
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Tasks API V2beta3
|
82
79
|
test_files: []
|