google-apis-cloudtasks_v2 0.28.0 → 0.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/cloudtasks_v2/classes.rb +27 -14
- data/lib/google/apis/cloudtasks_v2/gem_version.rb +2 -2
- 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: 622990ad68f342096690f86e51e0971ed9b0ab2fb241083fe18c8a28734b0afc
|
4
|
+
data.tar.gz: 7cadf74b84d3d13b9c1a9bbc160b9cc0c40bcc90a66662b80c37baf554ea1e60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb39a0bc48171d7ba5e269afa838bf282cf369af39981139776cbcbe485cae6c59b208c4e998b28b0baeb439f95b804b1b86b90d023838e4ec8abb27d95c0a80
|
7
|
+
data.tar.gz: 1dc27c6176abd6c40158a7a998adc9bce436d3125099041b7624b776a9ef8a6f14e90ad15df113ff8b779e69a959dd2267f4951fbe80bb247df50299bd4cba8d
|
data/CHANGELOG.md
CHANGED
@@ -1058,10 +1058,13 @@ module Google
|
|
1058
1058
|
# A task will be scheduled for retry between min_backoff and max_backoff
|
1059
1059
|
# duration after it fails, if the queue's RetryConfig specifies that the task
|
1060
1060
|
# should be retried. If unspecified when the queue is created, Cloud Tasks will
|
1061
|
-
# pick the default.
|
1062
|
-
#
|
1063
|
-
#
|
1064
|
-
#
|
1061
|
+
# pick the default. The value must be given as a string that indicates the
|
1062
|
+
# length of time (in seconds) followed by `s` (for "seconds"). For more
|
1063
|
+
# information on the format, see the documentation for [Duration](https://
|
1064
|
+
# protobuf.dev/reference/protobuf/google.protobuf/#duration). `max_backoff` will
|
1065
|
+
# be truncated to the nearest second. This field has the same meaning as [
|
1066
|
+
# max_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/
|
1067
|
+
# standard/python/config/queueref#retry_parameters).
|
1065
1068
|
# Corresponds to the JSON property `maxBackoff`
|
1066
1069
|
# @return [String]
|
1067
1070
|
attr_accessor :max_backoff
|
@@ -1087,10 +1090,14 @@ module Google
|
|
1087
1090
|
# max_retry_duration` time has passed *and* the task has been attempted
|
1088
1091
|
# max_attempts times, no further attempts will be made and the task will be
|
1089
1092
|
# deleted. If zero, then the task age is unlimited. If unspecified when the
|
1090
|
-
# queue is created, Cloud Tasks will pick the default.
|
1091
|
-
#
|
1092
|
-
#
|
1093
|
-
#
|
1093
|
+
# queue is created, Cloud Tasks will pick the default. The value must be given
|
1094
|
+
# as a string that indicates the length of time (in seconds) followed by `s` (
|
1095
|
+
# for "seconds"). For the maximum possible value or the format, see the
|
1096
|
+
# documentation for [Duration](https://protobuf.dev/reference/protobuf/google.
|
1097
|
+
# protobuf/#duration). `max_retry_duration` will be truncated to the nearest
|
1098
|
+
# second. This field has the same meaning as [task_age_limit in queue.yaml/xml](
|
1099
|
+
# https://cloud.google.com/appengine/docs/standard/python/config/queueref#
|
1100
|
+
# retry_parameters).
|
1094
1101
|
# Corresponds to the JSON property `maxRetryDuration`
|
1095
1102
|
# @return [String]
|
1096
1103
|
attr_accessor :max_retry_duration
|
@@ -1098,10 +1105,13 @@ module Google
|
|
1098
1105
|
# A task will be scheduled for retry between min_backoff and max_backoff
|
1099
1106
|
# duration after it fails, if the queue's RetryConfig specifies that the task
|
1100
1107
|
# should be retried. If unspecified when the queue is created, Cloud Tasks will
|
1101
|
-
# pick the default.
|
1102
|
-
#
|
1103
|
-
#
|
1104
|
-
#
|
1108
|
+
# pick the default. The value must be given as a string that indicates the
|
1109
|
+
# length of time (in seconds) followed by `s` (for "seconds"). For more
|
1110
|
+
# information on the format, see the documentation for [Duration](https://
|
1111
|
+
# protobuf.dev/reference/protobuf/google.protobuf/#duration). `min_backoff` will
|
1112
|
+
# be truncated to the nearest second. This field has the same meaning as [
|
1113
|
+
# min_backoff_seconds in queue.yaml/xml](https://cloud.google.com/appengine/docs/
|
1114
|
+
# standard/python/config/queueref#retry_parameters).
|
1105
1115
|
# Corresponds to the JSON property `minBackoff`
|
1106
1116
|
# @return [String]
|
1107
1117
|
attr_accessor :min_backoff
|
@@ -1322,8 +1332,11 @@ module Google
|
|
1322
1332
|
# service's timeout. We recommend setting the `dispatch_deadline` to at most a
|
1323
1333
|
# few seconds more than the app handler's timeout. For more information see [
|
1324
1334
|
# Timeouts](https://cloud.google.com/tasks/docs/creating-appengine-handlers#
|
1325
|
-
# timeouts).
|
1326
|
-
#
|
1335
|
+
# timeouts). The value must be given as a string that indicates the length of
|
1336
|
+
# time (in seconds) followed by `s` (for "seconds"). For more information on the
|
1337
|
+
# format, see the documentation for [Duration](https://protobuf.dev/reference/
|
1338
|
+
# protobuf/google.protobuf/#duration). `dispatch_deadline` will be truncated to
|
1339
|
+
# the nearest millisecond. The deadline is an approximate deadline.
|
1327
1340
|
# Corresponds to the JSON property `dispatchDeadline`
|
1328
1341
|
# @return [String]
|
1329
1342
|
attr_accessor :dispatch_deadline
|
@@ -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.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230906"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|