google-apis-cloudtasks_v2beta2 0.27.0 → 0.29.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: 6b4e61ccff37323f1525be2b40af9c937a5cd81225242f411eb2942cdac08fe6
4
- data.tar.gz: 0f31cc18dbf0dd261ea7ea5902ef805730e48af072ce35141b62c0d25363651a
3
+ metadata.gz: d7a3959d46fe5bc8a1abaf2fb42dd48e5d0460401314d73ec73e8f7004132dc8
4
+ data.tar.gz: 14c279fd845283523e223c711997d7c4c1d529e230c4207ad673fc422cbdeaf5
5
5
  SHA512:
6
- metadata.gz: 20973ceb792faca97d33d7cd6b98cebcd1ef7fe64e35b539726e00ce3252943d1a3357e26ca27d07d2f441766b52f94c7b491058ff5585352ed76c54d989ec7e
7
- data.tar.gz: c66946a25342c3183784571d305f750caf4044926a78a939e05e9072fbb197c289842283dbb121ff99e172dc4cbf97e0a57b37d0fde75c91cd3ffac657ae98ca
6
+ metadata.gz: 718ab173758857db593bbce6d3f98187cdfb9f4ea6c8dbf9479c8aadc83386e3dd2b4c810b706b47e25f6369d7e8cfb24b59dbf2441d7718df85843479260bbf
7
+ data.tar.gz: d7a0c32c504180ce49c5284fd6518cdd9e53c6cd7d8416c4e50bf555abd1872bf690ee7386090c0ce0d1e607ab48cd64405bc2f1db48a40d68d4f6c8e5613c75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudtasks_v2beta2
2
2
 
3
+ ### v0.29.0 (2022-10-28)
4
+
5
+ * Regenerated from discovery document revision 20221014
6
+ * Regenerated using generator version 0.11.0
7
+
8
+ ### v0.28.0 (2022-10-10)
9
+
10
+ * Regenerated from discovery document revision 20220923
11
+
3
12
  ### v0.27.0 (2022-09-22)
4
13
 
5
14
  * Regenerated using generator version 0.10.0
@@ -402,7 +402,7 @@ module Google
402
402
  end
403
403
  end
404
404
 
405
- # Request message for BufferTask.
405
+ # LINT.IfChange Request message for BufferTask.
406
406
  class BufferTaskRequest
407
407
  include Google::Apis::Core::Hashable
408
408
 
@@ -2027,6 +2027,11 @@ module Google
2027
2027
  # @return [String]
2028
2028
  attr_accessor :scheme
2029
2029
 
2030
+ # Uri Override Enforce Mode Determines the Target UriOverride mode.
2031
+ # Corresponds to the JSON property `uriOverrideEnforceMode`
2032
+ # @return [String]
2033
+ attr_accessor :uri_override_enforce_mode
2034
+
2030
2035
  def initialize(**args)
2031
2036
  update!(**args)
2032
2037
  end
@@ -2038,6 +2043,7 @@ module Google
2038
2043
  @port = args[:port] if args.key?(:port)
2039
2044
  @query = args[:query] if args.key?(:query)
2040
2045
  @scheme = args[:scheme] if args.key?(:scheme)
2046
+ @uri_override_enforce_mode = args[:uri_override_enforce_mode] if args.key?(:uri_override_enforce_mode)
2041
2047
  end
2042
2048
  end
2043
2049
  end
@@ -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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220914"
25
+ REVISION = "20221014"
26
26
  end
27
27
  end
28
28
  end
@@ -728,6 +728,7 @@ module Google
728
728
  property :port, :numeric_string => true, as: 'port'
729
729
  property :query, as: 'query'
730
730
  property :scheme, as: 'scheme'
731
+ property :uri_override_enforce_mode, as: 'uriOverrideEnforceMode'
731
732
  end
732
733
  end
733
734
  end
@@ -49,6 +49,44 @@ module Google
49
49
  @batch_path = 'batch'
50
50
  end
51
51
 
52
+ # Update queue list by uploading a queue.yaml file. The queue.yaml file is
53
+ # supplied in the request body as a YAML encoded string. This method was added
54
+ # to support gcloud clients versions before 322.0.0. New clients should use
55
+ # CreateQueue instead of this method.
56
+ # @param [Google::Apis::CloudtasksV2beta2::HttpBody] http_body_object
57
+ # @param [String] app_id
58
+ # Required. The App ID is supplied as an HTTP parameter. Unlike internal usage
59
+ # of App ID, it does not include a region prefix. Rather, the App ID represents
60
+ # the Project ID against which to make the request.
61
+ # @param [String] fields
62
+ # Selector specifying which fields to include in a partial response.
63
+ # @param [String] quota_user
64
+ # Available to use for quota purposes for server-side applications. Can be any
65
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
66
+ # @param [Google::Apis::RequestOptions] options
67
+ # Request-specific options
68
+ #
69
+ # @yield [result, err] Result & error if block supplied
70
+ # @yieldparam result [Google::Apis::CloudtasksV2beta2::Empty] parsed result object
71
+ # @yieldparam err [StandardError] error object if request failed
72
+ #
73
+ # @return [Google::Apis::CloudtasksV2beta2::Empty]
74
+ #
75
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
76
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
77
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
78
+ def update_api_queue(http_body_object = nil, app_id: nil, fields: nil, quota_user: nil, options: nil, &block)
79
+ command = make_simple_command(:post, 'api/queue/update', options)
80
+ command.request_representation = Google::Apis::CloudtasksV2beta2::HttpBody::Representation
81
+ command.request_object = http_body_object
82
+ command.response_representation = Google::Apis::CloudtasksV2beta2::Empty::Representation
83
+ command.response_class = Google::Apis::CloudtasksV2beta2::Empty
84
+ command.query['appId'] = app_id unless app_id.nil?
85
+ command.query['fields'] = fields unless fields.nil?
86
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
87
+ execute_or_queue_command(command, &block)
88
+ end
89
+
52
90
  # Gets information about a location.
53
91
  # @param [String] name
54
92
  # Resource name for the location.
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.27.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: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v2beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta2/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta2/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2beta2
63
63
  post_install_message:
64
64
  rdoc_options: []