google-apis-cloudtasks_v2beta3 0.1.0 → 0.6.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: 2c842b61679883875dbadbf0e5d5e188c41235c11e619e5ede27af78c48068c9
4
- data.tar.gz: e7f1026adae82a3f973f2099e9fa75a110ea9c3ebcc8bf5c9030f126ef3cf28f
3
+ metadata.gz: 8b16f81109fea355db18706563c806f72db5a2ac69f927b004b31d015aabf356
4
+ data.tar.gz: c26c310449de897da9514db53c077d8431585adb9632e72152a65aa86c58d969
5
5
  SHA512:
6
- metadata.gz: 3be3344fd3a0436b3de1ebfbd5daf12fe82cb6239853bd6094941ff90cbde982ce0314c3e1a250874c9a45576335163461877a5a30afbf1e217f0bb1988f293d
7
- data.tar.gz: f75c50938c4fc901e45dcaa47c9664b671d01dfa698f290e821fda8444692ba57f17799e7640b998323b49956165af0dedb75efee89086e8f5b4d5b5904cd8d7
6
+ metadata.gz: 6e985d2b191af1e14a7074e12afd3cdaae08be5f8788f76d11cdac7a67a2086c79ca1672fd461653b4d11ced731f97b9008e3df7c19a0acf906e83167544f5fa
7
+ data.tar.gz: f3291bc3320ac9c6369d5f131ff7d7bb82ebdb665b2d3498528d1e1863f55edfebd19e836917d778ef645f67311babd9843f3032d4c026de9ed7040e7d2975fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-cloudtasks_v2beta3
2
2
 
3
+ ### v0.6.0 (2021-05-19)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.5.0 (2021-05-01)
8
+
9
+ * Regenerated from discovery document revision 20210426
10
+
11
+ ### v0.4.0 (2021-03-20)
12
+
13
+ * Regenerated from discovery document revision 20210315
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.3.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.2.0 (2021-02-05)
21
+
22
+ * Regenerated from discovery document revision 20210129
23
+ * Regenerated using generator version 0.1.2
24
+
3
25
  ### v0.1.0 (2021-01-07)
4
26
 
5
27
  * Regenerated using generator version 0.1.1
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V2beta3'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
32
+ # See, edit, configure, and delete your Google Cloud Platform data
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
@@ -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.1.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.1"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20201202"
25
+ REVISION = "20210426"
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
@@ -83,11 +83,15 @@ module Google
83
83
  # @param [String] name
84
84
  # The resource that owns the locations collection, if applicable.
85
85
  # @param [String] filter
86
- # The standard list filter.
86
+ # A filter to narrow down results to a preferred subset. The filtering language
87
+ # accepts strings like "displayName=tokyo", and is documented in more detail in [
88
+ # AIP-160](https://google.aip.dev/160).
87
89
  # @param [Fixnum] page_size
88
- # The standard list page size.
90
+ # The maximum number of results to return. If not set, the service selects a
91
+ # default.
89
92
  # @param [String] page_token
90
- # The standard list page token.
93
+ # A page token received from the `next_page_token` field in the response. Send
94
+ # that page token to receive the subsequent page.
91
95
  # @param [String] fields
92
96
  # Selector specifying which fields to include in a partial response.
93
97
  # @param [String] quota_user
@@ -202,9 +206,8 @@ module Google
202
206
  # @param [String] read_mask
203
207
  # Optional. Read mask is used for a more granular control over what the API
204
208
  # returns. If the mask is not present all fields will be returned except [Queue.
205
- # stats], if the mask is set to "*" all fields including [Queue.stats] will be
206
- # returned, otherwise only the fields explicitly specified in the mask will be
207
- # returned.
209
+ # stats]. [Queue.stats] will be returned only if it was explicitly specified in
210
+ # the mask.
208
211
  # @param [String] fields
209
212
  # Selector specifying which fields to include in a partial response.
210
213
  # @param [String] quota_user
@@ -293,11 +296,10 @@ module Google
293
296
  # call to ListQueues method. It is an error to switch the value of the filter
294
297
  # while iterating through pages.
295
298
  # @param [String] read_mask
296
- # Optional. Read mask is used for a more granular control on the queues that the
297
- # API returns. If the mask is not present all fields will be returned except [
298
- # Queue.stats], if the mask is set to "*" all fields including [Queue.stats]
299
- # will be returned, otherwise only the fields explicitly specified in the mask
300
- # will be returned.
299
+ # Optional. Read mask is used for a more granular control over what the API
300
+ # returns. If the mask is not present all fields will be returned except [Queue.
301
+ # stats]. [Queue.stats] will be returned only if it was explicitly specified in
302
+ # the mask.
301
303
  # @param [String] fields
302
304
  # Selector specifying which fields to include in a partial response.
303
305
  # @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.1.0
4
+ version: 0.6.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-01-08 00:00:00.000000000 Z
11
+ date: 2021-05-24 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.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.6.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: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.1.4
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Tasks API V2beta3