google-apis-cloudtasks_v2beta2 0.34.0 → 0.35.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: 541f6199439f4d7dbc3afbfa6c91a8fec08c69c210efac2981b7272648132b0c
|
|
4
|
+
data.tar.gz: 604709fcb6dffaac7e950e390072a4c783a59f32e8ff2d406c6608cb71df211d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34c74781ae09abef44ae22760a3a2424c02c55b399e3e01e44bafbe9960d6ec1c63448090f066f9d89fd82b4254a70e43b69c90c144d2d4010298c8c3c06797e
|
|
7
|
+
data.tar.gz: f0f696380d8eddc5e3624c16964a149f86bf4918d4a17f9a5983dc59843e44c564b58c711218809bfb195f664b4f3fee605886e826d0c215107034cb693e962b
|
data/CHANGELOG.md
CHANGED
|
@@ -832,7 +832,7 @@ module Google
|
|
|
832
832
|
# @return [Array<Google::Apis::CloudtasksV2beta2::HeaderOverride>]
|
|
833
833
|
attr_accessor :header_overrides
|
|
834
834
|
|
|
835
|
-
# The HTTP method to use for the request. When specified, it
|
|
835
|
+
# The HTTP method to use for the request. When specified, it overrides
|
|
836
836
|
# HttpRequest for the task. Note that if the value is set to HttpMethod the
|
|
837
837
|
# HttpRequest of the task will be ignored at execution time.
|
|
838
838
|
# Corresponds to the JSON property `httpMethod`
|
|
@@ -1152,7 +1152,7 @@ module Google
|
|
|
1152
1152
|
class PathOverride
|
|
1153
1153
|
include Google::Apis::Core::Hashable
|
|
1154
1154
|
|
|
1155
|
-
# The URI path (e.g.,
|
|
1155
|
+
# The URI path (e.g., /users/1234). Default is an empty string.
|
|
1156
1156
|
# Corresponds to the JSON property `path`
|
|
1157
1157
|
# @return [String]
|
|
1158
1158
|
attr_accessor :path
|
|
@@ -1336,7 +1336,8 @@ module Google
|
|
|
1336
1336
|
class QueryOverride
|
|
1337
1337
|
include Google::Apis::Core::Hashable
|
|
1338
1338
|
|
|
1339
|
-
# The query parameters (e.g., qparam1=123&qparam2=456). Default is
|
|
1339
|
+
# The query parameters (e.g., qparam1=123&qparam2=456). Default is an empty
|
|
1340
|
+
# string.
|
|
1340
1341
|
# Corresponds to the JSON property `queryParams`
|
|
1341
1342
|
# @return [String]
|
|
1342
1343
|
attr_accessor :query_params
|
|
@@ -2034,10 +2035,10 @@ module Google
|
|
|
2034
2035
|
class UriOverride
|
|
2035
2036
|
include Google::Apis::Core::Hashable
|
|
2036
2037
|
|
|
2037
|
-
# Host override. When specified,
|
|
2038
|
-
# example, if the task URL is "https://www.google.com"
|
|
2039
|
-
# "example.net", the overridden URI will be changed to "https://example.net"
|
|
2040
|
-
# Host value cannot be an empty string.
|
|
2038
|
+
# Host override. When specified, replaces the host part of the task URL. For
|
|
2039
|
+
# example, if the task URL is "https://www.google.com," and host value is set to
|
|
2040
|
+
# "example.net", the overridden URI will be changed to "https://example.net."
|
|
2041
|
+
# Host value cannot be an empty string (INVALID_ARGUMENT).
|
|
2041
2042
|
# Corresponds to the JSON property `host`
|
|
2042
2043
|
# @return [String]
|
|
2043
2044
|
attr_accessor :host
|
|
@@ -2047,7 +2048,7 @@ module Google
|
|
|
2047
2048
|
# @return [Google::Apis::CloudtasksV2beta2::PathOverride]
|
|
2048
2049
|
attr_accessor :path_override
|
|
2049
2050
|
|
|
2050
|
-
# Port override. When specified,
|
|
2051
|
+
# Port override. When specified, replaces the port part of the task URI. For
|
|
2051
2052
|
# instance, for a URI http://www.google.com/foo and port=123, the overridden URI
|
|
2052
2053
|
# becomes http://www.google.com:123/foo. Note that the port value must be a
|
|
2053
2054
|
# positive integer. Setting the port to 0 (Zero) clears the URI port.
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.35.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 = "20230224"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
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.
|
|
4
|
+
version: 0.35.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-
|
|
11
|
+
date: 2023-03-05 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_v2beta2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta2/v0.35.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: []
|