google-apis-cloudtasks_v2beta2 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: 38b3bf0b3db0c5043dbb77452e4d0f599aa907292108e6020a78e92cc343a4ac
4
- data.tar.gz: 5a06b44a978e7c8c6bfefa890c9782a563e729b42192e9b1c76034141f579015
3
+ metadata.gz: e76157ec40ccb226473a7b4e16218e6bba425995b5e5ef9e688572cd37a82073
4
+ data.tar.gz: bc7f1283dfdb6b31a69ff6d1918da50ca36f92e18573948198a175a3c2312710
5
5
  SHA512:
6
- metadata.gz: a406d90dc91a3c2c77a4e7812f80e3a90e775daebec8189f860dc76b3bbcbba95be87984b8825c27097766e73d186c7dac8ee1d070b1f11de515587d742126da
7
- data.tar.gz: a13aad7fc34e5865bdad175527a0a06c52cb5df1f4875126392468dd4ed1f5be8f93d5ec4d3edee408d2744ee5a7f12eb55c3559c56f3a8eb837cac282973aa3
6
+ metadata.gz: 0f5060a2744f5dae9ce8f76365a58867d612ee19694e9ebcccda24744921b405ac064461657fed09149261c75f582602ebd90850ce4d8933433aa57c342b282b
7
+ data.tar.gz: 318983423243635558a1db4e28b7818c938f0daf2958def29bba016717e6cb0b6327f9b36b30cb20664c6fe47acb2beebadd5961ba885551cd86e22097e2dceb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-cloudtasks_v2beta2
2
2
 
3
+ ### v0.6.0 (2021-05-19)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.5.0 (2021-05-02)
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-04)
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 = 'V2beta2'
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
@@ -1018,6 +1018,28 @@ module Google
1018
1018
  # @return [Google::Apis::CloudtasksV2beta2::QueueStats]
1019
1019
  attr_accessor :stats
1020
1020
 
1021
+ # The maximum amount of time that a task will be retained in this queue. Queues
1022
+ # created by Cloud Tasks have a default `task_ttl` of 31 days. After a task has
1023
+ # lived for `task_ttl`, the task will be deleted regardless of whether it was
1024
+ # dispatched or not. The `task_ttl` for queues created via queue.yaml/xml is
1025
+ # equal to the maximum duration because there is a [storage quota](https://cloud.
1026
+ # google.com/appengine/quotas#Task_Queue) for these queues. To view the maximum
1027
+ # valid duration, see the documentation for Duration.
1028
+ # Corresponds to the JSON property `taskTtl`
1029
+ # @return [String]
1030
+ attr_accessor :task_ttl
1031
+
1032
+ # The task tombstone time to live (TTL). After a task is deleted or completed,
1033
+ # the task's tombstone is retained for the length of time specified by `
1034
+ # tombstone_ttl`. The tombstone is used by task de-duplication; another task
1035
+ # with the same name can't be created until the tombstone has expired. For more
1036
+ # information about task de-duplication, see the documentation for
1037
+ # CreateTaskRequest. Queues created by Cloud Tasks have a default `tombstone_ttl`
1038
+ # of 1 hour.
1039
+ # Corresponds to the JSON property `tombstoneTtl`
1040
+ # @return [String]
1041
+ attr_accessor :tombstone_ttl
1042
+
1021
1043
  def initialize(**args)
1022
1044
  update!(**args)
1023
1045
  end
@@ -1032,6 +1054,8 @@ module Google
1032
1054
  @retry_config = args[:retry_config] if args.key?(:retry_config)
1033
1055
  @state = args[:state] if args.key?(:state)
1034
1056
  @stats = args[:stats] if args.key?(:stats)
1057
+ @task_ttl = args[:task_ttl] if args.key?(:task_ttl)
1058
+ @tombstone_ttl = args[:tombstone_ttl] if args.key?(:tombstone_ttl)
1035
1059
  end
1036
1060
  end
1037
1061
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudtasksV2beta2
18
18
  # Version of the google-apis-cloudtasks_v2beta2 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
@@ -452,6 +452,8 @@ module Google
452
452
  property :state, as: 'state'
453
453
  property :stats, as: 'stats', class: Google::Apis::CloudtasksV2beta2::QueueStats, decorator: Google::Apis::CloudtasksV2beta2::QueueStats::Representation
454
454
 
455
+ property :task_ttl, as: 'taskTtl'
456
+ property :tombstone_ttl, as: 'tombstoneTtl'
455
457
  end
456
458
  end
457
459
 
@@ -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
@@ -295,9 +298,8 @@ module Google
295
298
  # @param [String] read_mask
296
299
  # Optional. Read mask is used for a more granular control over what the API
297
300
  # returns. If the mask is not present all fields will be returned except [Queue.
298
- # stats], if the mask is set to "*" all fields including [Queue.stats] will be
299
- # returned, otherwise only the fields explicitly specified in the mask will be
300
- # returned.
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_v2beta2
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_v2beta2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta2/v0.1.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta2/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudtasks_v2beta2
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 V2beta2