google-apis-cloudtasks_v2 0.27.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 +8 -0
- data/lib/google/apis/cloudtasks_v2/classes.rb +47 -34
- data/lib/google/apis/cloudtasks_v2/gem_version.rb +2 -2
- metadata +4 -4
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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2
|
2
2
|
|
3
|
+
### v0.29.0 (2023-09-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230906
|
6
|
+
|
7
|
+
### v0.28.0 (2023-08-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230809
|
10
|
+
|
3
11
|
### v0.27.0 (2023-05-21)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230505
|
@@ -786,22 +786,22 @@ module Google
|
|
786
786
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
787
787
|
# the request, the resource, or both. To learn which resources support
|
788
788
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
789
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
789
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
790
790
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
791
791
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
792
792
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
793
793
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
794
794
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
795
795
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
796
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
797
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
798
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
799
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
800
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
801
|
-
# access description: Does not grant access after Sep 2020
|
802
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
803
|
-
# a description of IAM and its features, see the
|
804
|
-
# cloud.google.com/iam/docs/).
|
796
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
797
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
798
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
799
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
800
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
801
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
802
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
803
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
804
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
805
805
|
class Policy
|
806
806
|
include Google::Apis::Core::Hashable
|
807
807
|
|
@@ -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
|
@@ -1159,22 +1169,22 @@ module Google
|
|
1159
1169
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1160
1170
|
# the request, the resource, or both. To learn which resources support
|
1161
1171
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1162
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1172
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1163
1173
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1164
1174
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1165
1175
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1166
1176
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1167
1177
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1168
1178
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1169
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1170
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1171
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1172
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1173
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1174
|
-
# access description: Does not grant access after Sep 2020
|
1175
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1176
|
-
# a description of IAM and its features, see the
|
1177
|
-
# cloud.google.com/iam/docs/).
|
1179
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1180
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1181
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1182
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1183
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1184
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1185
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1186
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1187
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1178
1188
|
# Corresponds to the JSON property `policy`
|
1179
1189
|
# @return [Google::Apis::CloudtasksV2::Policy]
|
1180
1190
|
attr_accessor :policy
|
@@ -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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Tasks API V2
|