google-apis-cloudtasks_v2beta3 0.28.0 → 0.30.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: a4da580f1d0a03f94ab482698d54453329ebce260be01655a1fd1d030251ef18
|
|
4
|
+
data.tar.gz: f5fc24744d1c7de64ad15fc881116cb0ebcbc2fa5ba80a9ebced61110733ef81
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9597f0dc31456369ae4b7b86bb673bfb83182d88ba435cea1aecf3c31106bb284d6e3fe0d2f5fae3d940ba87c51a524d1b28e90ddd798f44f5980681b6a426cc
|
|
7
|
+
data.tar.gz: 84adaa9be712dbbfca9d8e90865fa9cb584a08a64cbc2420968999da58c56bf1813a337bf9070426c2699550c173f886b001acc1579dfea7f16318494907e937
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudtasks_v2beta3
|
|
2
2
|
|
|
3
|
+
### v0.30.0 (2023-05-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230505
|
|
6
|
+
|
|
7
|
+
### v0.29.0 (2023-04-30)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230417
|
|
10
|
+
|
|
3
11
|
### v0.28.0 (2023-03-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20230224
|
|
@@ -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
|
|
|
@@ -779,6 +779,21 @@ module Google
|
|
|
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
|
|
@@ -876,7 +893,7 @@ module Google
|
|
|
876
893
|
end
|
|
877
894
|
end
|
|
878
895
|
|
|
879
|
-
# A resource that represents Google Cloud
|
|
896
|
+
# A resource that represents a Google Cloud location.
|
|
880
897
|
class Location
|
|
881
898
|
include Google::Apis::Core::Hashable
|
|
882
899
|
|
|
@@ -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.30.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 = "20230505"
|
|
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.30.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-05-21 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.30.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: []
|