google-apis-cloudtasks_v2beta3 0.28.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: 6cb53ab456d88969c2c4677b286bb850fc9ead6982543bd46f2fb6da6a858b3e
4
- data.tar.gz: 6d37a02222fdb8311eee2a2d1a35bce3abe94457130a96883c78d7bbb5427a76
3
+ metadata.gz: 641ccf66693be45ac1760a91148db60cb64e5ea69e3e1857f1a2a2bc12d3c4d4
4
+ data.tar.gz: fb38f855349c88c47d75ee2b3347ac7a09ac45b234fd2369e94b6873530f34b5
5
5
  SHA512:
6
- metadata.gz: c42e401f56755b183bcedbd8fb59c97f8fa82ed094a5b8291ad95d1d67d53e6d2ec581ab9a1723def0fdfb3f5679dbfc0d9a8ebf68add5aa27bd600aa4e12ebc
7
- data.tar.gz: 3e25d0c4183575c486c90a97b109d3eb36623b0a01a0a2731c786a86f574d5882bd68c33bc07c82a51d59abf4da361f304fee1f1743d85c91b37f416157e5617
6
+ metadata.gz: f7392595f890e53cad630ba545098e8e1b51622b5acdb65c7dfc671c2d7050cb84870673bc979420fb0cf392ea8c16da6ab02dd3a597e68c6b015e30f911873a
7
+ data.tar.gz: 1c3260d399362c87e7e0f5450a9ccba625705d462104fa6f14a73e61b01aeebe8190d0a9af44669d0ea3f59243ba12d6627e340786ca381bdaa4562b79d09059
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.28.0 (2023-03-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20230224
@@ -361,7 +361,7 @@ module Google
361
361
  end
362
362
  end
363
363
 
364
- # LINT.IfChange Request message for BufferTask.
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
@@ -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.28.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 = "20230224"
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.28.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-03-05 00:00:00.000000000 Z
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.28.0
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: []