google-apis-cloudtasks_v2beta3 0.34.0 → 0.36.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de60ed556b6f9d33bed0df23fef960f4d3efdd5dc034597d69a32e6f6483539c
|
4
|
+
data.tar.gz: 17ad57cce523e9d88b45a4b48b509b680319256c26b6191789fbb5f533d1f05d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b950d7b8fdb08005a679bd292e186a095aae56dd95c3b144e14784848d6c0d95ac3d8603889d7251f1f456728e293a06534e014a398b487d64074d97bbb10fd
|
7
|
+
data.tar.gz: 76799bac83cca3854950764833e970378748f0fc63afb14e1a601a6bbc90e15a45ff1428085f006e938b22dde8770b84909e31e63832aa3bd8ce518d71355ce2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2beta3
|
2
2
|
|
3
|
+
### v0.36.0 (2023-10-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231018
|
6
|
+
|
7
|
+
### v0.35.0 (2023-10-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230929
|
10
|
+
|
3
11
|
### v0.34.0 (2023-10-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230927
|
@@ -414,8 +414,8 @@ module Google
|
|
414
414
|
end
|
415
415
|
end
|
416
416
|
|
417
|
-
#
|
418
|
-
#
|
417
|
+
# Describes the customer-managed encryption key (CMEK) configuration associated
|
418
|
+
# with a project and location.
|
419
419
|
class CmekConfig
|
420
420
|
include Google::Apis::Core::Hashable
|
421
421
|
|
@@ -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.36.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 = "20231018"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -158,8 +158,10 @@ module Google
|
|
158
158
|
# assotiated with the Cloud Tasks location (Creates if the key does not already
|
159
159
|
# exist). All new tasks created in the location will be encrypted at-rest with
|
160
160
|
# the KMS-key provided in the config.
|
161
|
-
# @param [String]
|
162
|
-
#
|
161
|
+
# @param [String] name
|
162
|
+
# Output only. The config resource name which includes the project and location
|
163
|
+
# and must end in 'cmekConfig', in the format projects/PROJECT_ID/locations/
|
164
|
+
# LOCATION_ID/cmekConfig`
|
163
165
|
# @param [Google::Apis::CloudtasksV2beta3::CmekConfig] cmek_config_object
|
164
166
|
# @param [String] update_mask
|
165
167
|
# List of fields to be updated in this request.
|
@@ -180,14 +182,13 @@ module Google
|
|
180
182
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
181
183
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
182
184
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
183
|
-
def update_project_location_cmek_config(
|
184
|
-
command = make_simple_command(:patch, 'v2beta3/
|
185
|
+
def update_project_location_cmek_config(name, cmek_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
186
|
+
command = make_simple_command(:patch, 'v2beta3/{+name}', options)
|
185
187
|
command.request_representation = Google::Apis::CloudtasksV2beta3::CmekConfig::Representation
|
186
188
|
command.request_object = cmek_config_object
|
187
189
|
command.response_representation = Google::Apis::CloudtasksV2beta3::CmekConfig::Representation
|
188
190
|
command.response_class = Google::Apis::CloudtasksV2beta3::CmekConfig
|
189
|
-
command.params['
|
190
|
-
command.params['locationsId'] = locations_id unless locations_id.nil?
|
191
|
+
command.params['name'] = name unless name.nil?
|
191
192
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
192
193
|
command.query['fields'] = fields unless fields.nil?
|
193
194
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -236,11 +237,18 @@ module Google
|
|
236
237
|
end
|
237
238
|
|
238
239
|
# Deletes a queue. This command will delete the queue even if it has tasks in it.
|
239
|
-
# Note: If you delete a queue,
|
240
|
-
#
|
241
|
-
#
|
242
|
-
#
|
243
|
-
#
|
240
|
+
# Note : If you delete a queue, you may be prevented from creating a new queue
|
241
|
+
# with the same name as the deleted queue for a tombstone window of up to 3 days.
|
242
|
+
# During this window, the CreateQueue operation may appear to recreate the
|
243
|
+
# queue, but this can be misleading. If you attempt to create a queue with the
|
244
|
+
# same name as one that is in the tombstone window, run GetQueue to confirm that
|
245
|
+
# the queue creation was successful. If GetQueue returns 200 response code, your
|
246
|
+
# queue was successfully created with the name of the previously deleted queue.
|
247
|
+
# Otherwise, your queue did not successfully recreate. WARNING: Using this
|
248
|
+
# method may have unintended side effects if you are using an App Engine `queue.
|
249
|
+
# yaml` or `queue.xml` file to manage your queues. Read [Overview of Queue
|
250
|
+
# Management and queue.yaml](https://cloud.google.com/tasks/docs/queue-yaml)
|
251
|
+
# before using this method.
|
244
252
|
# @param [String] name
|
245
253
|
# Required. The queue name. For example: `projects/PROJECT_ID/locations/
|
246
254
|
# LOCATION_ID/queues/QUEUE_ID`
|
@@ -653,10 +661,7 @@ module Google
|
|
653
661
|
# use the following format and set TASK_ID to your desired ID: projects/
|
654
662
|
# PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID:buffer To
|
655
663
|
# create the task with an automatically generated ID, use the following format:
|
656
|
-
# projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks:buffer.
|
657
|
-
# This feature is in its experimental stage. You must request access to the API
|
658
|
-
# through the [Cloud Tasks BufferTask Experiment Signup form](https://forms.gle/
|
659
|
-
# X8Zr5hiXH5tTGFqh8).
|
664
|
+
# projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks:buffer.
|
660
665
|
# @param [String] queue
|
661
666
|
# Required. The parent queue name. For example: projects/PROJECT_ID/locations/
|
662
667
|
# LOCATION_ID/queues/QUEUE_ID` The queue must already exist.
|
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.36.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-10-
|
11
|
+
date: 2023-10-29 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_v2beta3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2beta3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|