google-apis-cloudtasks_v2beta3 0.1.0 → 0.2.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/lib/google/apis/cloudtasks_v2beta3/classes.rb +24 -0
- data/lib/google/apis/cloudtasks_v2beta3/gem_version.rb +3 -3
- data/lib/google/apis/cloudtasks_v2beta3/representations.rb +2 -0
- data/lib/google/apis/cloudtasks_v2beta3/service.rb +6 -8
- 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: f95b4d94e036600034fa11e35c93c95dc574e178c8933764ae2b58482afd84d5
|
4
|
+
data.tar.gz: aa443c19ac081496e068892d3a4b0da696583b82fd1062aebe247b8c7a461203
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edb8cf936cc96c80f5803be20232c124beb253ae91e61041cc6100aa177edc46a3a55f905df36a6b6e84c70d786ba01cb7f337d0015302f803ddfc4f70b890d1
|
7
|
+
data.tar.gz: 5b5e0d89cbbacf0f5fd3acd10d7e236569a127d8d98f94609bdbd27b37cb1ee2ceed85b46e16c47286fcd8e6e6052803d1dacd1a434542c5fd88a89c9b01e593
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2beta3
|
2
2
|
|
3
|
+
### v0.2.0 (2021-02-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210129
|
6
|
+
* Regenerated using generator version 0.1.2
|
7
|
+
|
3
8
|
### v0.1.0 (2021-01-07)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.1.1
|
@@ -1000,6 +1000,28 @@ module Google
|
|
1000
1000
|
# @return [Google::Apis::CloudtasksV2beta3::QueueStats]
|
1001
1001
|
attr_accessor :stats
|
1002
1002
|
|
1003
|
+
# The maximum amount of time that a task will be retained in this queue. Queues
|
1004
|
+
# created by Cloud Tasks have a default `task_ttl` of 31 days. After a task has
|
1005
|
+
# lived for `task_ttl`, the task will be deleted regardless of whether it was
|
1006
|
+
# dispatched or not. The `task_ttl` for queues created via queue.yaml/xml is
|
1007
|
+
# equal to the maximum duration because there is a [storage quota](https://cloud.
|
1008
|
+
# google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum
|
1009
|
+
# valid duration, see the documentation for Duration.
|
1010
|
+
# Corresponds to the JSON property `taskTtl`
|
1011
|
+
# @return [String]
|
1012
|
+
attr_accessor :task_ttl
|
1013
|
+
|
1014
|
+
# The task tombstone time to live (TTL). After a task is deleted or executed,
|
1015
|
+
# the task's tombstone is retained for the length of time specified by `
|
1016
|
+
# tombstone_ttl`. The tombstone is used by task de-duplication; another task
|
1017
|
+
# with the same name can't be created until the tombstone has expired. For more
|
1018
|
+
# information about task de-duplication, see the documentation for
|
1019
|
+
# CreateTaskRequest. Queues created by Cloud Tasks have a default `tombstone_ttl`
|
1020
|
+
# of 1 hour.
|
1021
|
+
# Corresponds to the JSON property `tombstoneTtl`
|
1022
|
+
# @return [String]
|
1023
|
+
attr_accessor :tombstone_ttl
|
1024
|
+
|
1003
1025
|
# Immutable. The type of a queue (push or pull). `Queue.type` is an immutable
|
1004
1026
|
# property of the queue that is set at the queue creation time. When left
|
1005
1027
|
# unspecified, the default value of `PUSH` is selected.
|
@@ -1021,6 +1043,8 @@ module Google
|
|
1021
1043
|
@stackdriver_logging_config = args[:stackdriver_logging_config] if args.key?(:stackdriver_logging_config)
|
1022
1044
|
@state = args[:state] if args.key?(:state)
|
1023
1045
|
@stats = args[:stats] if args.key?(:stats)
|
1046
|
+
@task_ttl = args[:task_ttl] if args.key?(:task_ttl)
|
1047
|
+
@tombstone_ttl = args[:tombstone_ttl] if args.key?(:tombstone_ttl)
|
1024
1048
|
@type = args[:type] if args.key?(:type)
|
1025
1049
|
end
|
1026
1050
|
end
|
@@ -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.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.1.
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -425,6 +425,8 @@ module Google
|
|
425
425
|
property :state, as: 'state'
|
426
426
|
property :stats, as: 'stats', class: Google::Apis::CloudtasksV2beta3::QueueStats, decorator: Google::Apis::CloudtasksV2beta3::QueueStats::Representation
|
427
427
|
|
428
|
+
property :task_ttl, as: 'taskTtl'
|
429
|
+
property :tombstone_ttl, as: 'tombstoneTtl'
|
428
430
|
property :type, as: 'type'
|
429
431
|
end
|
430
432
|
end
|
@@ -202,9 +202,8 @@ module Google
|
|
202
202
|
# @param [String] read_mask
|
203
203
|
# Optional. Read mask is used for a more granular control over what the API
|
204
204
|
# returns. If the mask is not present all fields will be returned except [Queue.
|
205
|
-
# stats]
|
206
|
-
#
|
207
|
-
# returned.
|
205
|
+
# stats]. [Queue.stats] will be returned only if it was explicitly specified in
|
206
|
+
# the mask.
|
208
207
|
# @param [String] fields
|
209
208
|
# Selector specifying which fields to include in a partial response.
|
210
209
|
# @param [String] quota_user
|
@@ -293,11 +292,10 @@ module Google
|
|
293
292
|
# call to ListQueues method. It is an error to switch the value of the filter
|
294
293
|
# while iterating through pages.
|
295
294
|
# @param [String] read_mask
|
296
|
-
# Optional. Read mask is used for a more granular control
|
297
|
-
#
|
298
|
-
# Queue.stats]
|
299
|
-
#
|
300
|
-
# will be returned.
|
295
|
+
# Optional. Read mask is used for a more granular control over what the API
|
296
|
+
# returns. If the mask is not present all fields will be returned except [Queue.
|
297
|
+
# stats]. [Queue.stats] will be returned only if it was explicitly specified in
|
298
|
+
# the mask.
|
301
299
|
# @param [String] fields
|
302
300
|
# Selector specifying which fields to include in a partial response.
|
303
301
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.2.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: 2021-
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudtasks_v2beta3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudtasks_v2beta3
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.6
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Tasks API V2beta3
|