google-apis-cloudtasks_v2beta3 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 641ccf66693be45ac1760a91148db60cb64e5ea69e3e1857f1a2a2bc12d3c4d4
|
4
|
+
data.tar.gz: fb38f855349c88c47d75ee2b3347ac7a09ac45b234fd2369e94b6873530f34b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7392595f890e53cad630ba545098e8e1b51622b5acdb65c7dfc671c2d7050cb84870673bc979420fb0cf392ea8c16da6ab02dd3a597e68c6b015e30f911873a
|
7
|
+
data.tar.gz: 1c3260d399362c87e7e0f5450a9ccba625705d462104fa6f14a73e61b01aeebe8190d0a9af44669d0ea3f59243ba12d6627e340786ca381bdaa4562b79d09059
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2beta3
|
2
2
|
|
3
|
+
### v0.29.0 (2023-04-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230417
|
6
|
+
|
7
|
+
### v0.28.0 (2023-03-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230224
|
10
|
+
|
3
11
|
### v0.27.0 (2023-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230214
|
@@ -361,7 +361,7 @@ module Google
|
|
361
361
|
end
|
362
362
|
end
|
363
363
|
|
364
|
-
#
|
364
|
+
# Request message for BufferTask.
|
365
365
|
class BufferTaskRequest
|
366
366
|
include Google::Apis::Core::Hashable
|
367
367
|
|
@@ -772,13 +772,28 @@ module Google
|
|
772
772
|
# @return [Array<Google::Apis::CloudtasksV2beta3::HeaderOverride>]
|
773
773
|
attr_accessor :header_overrides
|
774
774
|
|
775
|
-
# The HTTP method to use for the request. When specified, it
|
775
|
+
# The HTTP method to use for the request. When specified, it overrides
|
776
776
|
# HttpRequest for the task. Note that if the value is set to HttpMethod the
|
777
777
|
# HttpRequest of the task will be ignored at execution time.
|
778
778
|
# Corresponds to the JSON property `httpMethod`
|
779
779
|
# @return [String]
|
780
780
|
attr_accessor :http_method
|
781
781
|
|
782
|
+
# Contains information needed for generating an [OAuth token](https://developers.
|
783
|
+
# google.com/identity/protocols/OAuth2). This type of authorization should
|
784
|
+
# generally only be used when calling Google APIs hosted on *.googleapis.com.
|
785
|
+
# Corresponds to the JSON property `oauthToken`
|
786
|
+
# @return [Google::Apis::CloudtasksV2beta3::OAuthToken]
|
787
|
+
attr_accessor :oauth_token
|
788
|
+
|
789
|
+
# Contains information needed for generating an [OpenID Connect token](https://
|
790
|
+
# developers.google.com/identity/protocols/OpenIDConnect). This type of
|
791
|
+
# authorization can be used for many scenarios, including calling Cloud Run, or
|
792
|
+
# endpoints where you intend to validate the token yourself.
|
793
|
+
# Corresponds to the JSON property `oidcToken`
|
794
|
+
# @return [Google::Apis::CloudtasksV2beta3::OidcToken]
|
795
|
+
attr_accessor :oidc_token
|
796
|
+
|
782
797
|
# URI Override. When specified, all the HTTP tasks inside the queue will be
|
783
798
|
# partially or fully overridden depending on the configured values.
|
784
799
|
# Corresponds to the JSON property `uriOverride`
|
@@ -793,6 +808,8 @@ module Google
|
|
793
808
|
def update!(**args)
|
794
809
|
@header_overrides = args[:header_overrides] if args.key?(:header_overrides)
|
795
810
|
@http_method = args[:http_method] if args.key?(:http_method)
|
811
|
+
@oauth_token = args[:oauth_token] if args.key?(:oauth_token)
|
812
|
+
@oidc_token = args[:oidc_token] if args.key?(:oidc_token)
|
796
813
|
@uri_override = args[:uri_override] if args.key?(:uri_override)
|
797
814
|
end
|
798
815
|
end
|
@@ -990,7 +1007,7 @@ module Google
|
|
990
1007
|
class PathOverride
|
991
1008
|
include Google::Apis::Core::Hashable
|
992
1009
|
|
993
|
-
# The URI path (e.g.,
|
1010
|
+
# The URI path (e.g., /users/1234). Default is an empty string.
|
994
1011
|
# Corresponds to the JSON property `path`
|
995
1012
|
# @return [String]
|
996
1013
|
attr_accessor :path
|
@@ -1158,7 +1175,8 @@ module Google
|
|
1158
1175
|
class QueryOverride
|
1159
1176
|
include Google::Apis::Core::Hashable
|
1160
1177
|
|
1161
|
-
# The query parameters (e.g., qparam1=123&qparam2=456). Default is
|
1178
|
+
# The query parameters (e.g., qparam1=123&qparam2=456). Default is an empty
|
1179
|
+
# string.
|
1162
1180
|
# Corresponds to the JSON property `queryParams`
|
1163
1181
|
# @return [String]
|
1164
1182
|
attr_accessor :query_params
|
@@ -1856,10 +1874,10 @@ module Google
|
|
1856
1874
|
class UriOverride
|
1857
1875
|
include Google::Apis::Core::Hashable
|
1858
1876
|
|
1859
|
-
# Host override. When specified,
|
1860
|
-
# example, if the task URL is "https://www.google.com"
|
1861
|
-
# "example.net", the overridden URI will be changed to "https://example.net"
|
1862
|
-
# Host value cannot be an empty string.
|
1877
|
+
# Host override. When specified, replaces the host part of the task URL. For
|
1878
|
+
# example, if the task URL is "https://www.google.com," and host value is set to
|
1879
|
+
# "example.net", the overridden URI will be changed to "https://example.net."
|
1880
|
+
# Host value cannot be an empty string (INVALID_ARGUMENT).
|
1863
1881
|
# Corresponds to the JSON property `host`
|
1864
1882
|
# @return [String]
|
1865
1883
|
attr_accessor :host
|
@@ -1869,7 +1887,7 @@ module Google
|
|
1869
1887
|
# @return [Google::Apis::CloudtasksV2beta3::PathOverride]
|
1870
1888
|
attr_accessor :path_override
|
1871
1889
|
|
1872
|
-
# Port override. When specified,
|
1890
|
+
# Port override. When specified, replaces the port part of the task URI. For
|
1873
1891
|
# instance, for a URI http://www.google.com/foo and port=123, the overridden URI
|
1874
1892
|
# becomes http://www.google.com:123/foo. Note that the port value must be a
|
1875
1893
|
# 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 CloudtasksV2beta3
|
18
18
|
# Version of the google-apis-cloudtasks_v2beta3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.29.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 = "20230417"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -426,6 +426,10 @@ module Google
|
|
426
426
|
collection :header_overrides, as: 'headerOverrides', class: Google::Apis::CloudtasksV2beta3::HeaderOverride, decorator: Google::Apis::CloudtasksV2beta3::HeaderOverride::Representation
|
427
427
|
|
428
428
|
property :http_method, as: 'httpMethod'
|
429
|
+
property :oauth_token, as: 'oauthToken', class: Google::Apis::CloudtasksV2beta3::OAuthToken, decorator: Google::Apis::CloudtasksV2beta3::OAuthToken::Representation
|
430
|
+
|
431
|
+
property :oidc_token, as: 'oidcToken', class: Google::Apis::CloudtasksV2beta3::OidcToken, decorator: Google::Apis::CloudtasksV2beta3::OidcToken::Representation
|
432
|
+
|
429
433
|
property :uri_override, as: 'uriOverride', class: Google::Apis::CloudtasksV2beta3::UriOverride, decorator: Google::Apis::CloudtasksV2beta3::UriOverride::Representation
|
430
434
|
|
431
435
|
end
|
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.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: 2023-
|
11
|
+
date: 2023-04-30 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.29.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: []
|