google-apis-cloudtasks_v2beta3 0.25.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ce502608929fa6ffddadc50d935edcc292b2b9786e2b0f2d627a20fa1c92489
4
- data.tar.gz: 2ca719730f5a8a5ac1094af567d230f9318768f9f685708ac21029e877f419e6
3
+ metadata.gz: d25e13f2b821dfa03d77dab5597a0c2678aa28d4065db8223cbc053a4d66c9be
4
+ data.tar.gz: dece95126b9dc3e0cd8729ec5661814c6a5ff3b1fa6f2a14ea6d7e91c97564a3
5
5
  SHA512:
6
- metadata.gz: f1a5394b15f5383bad3c2aa05ad48a567d337d082a9db38ef1823cff1749f9a26b546ceada65f3a685a98d5323c4fa05600759c2a76a97dcc6180e080028428a
7
- data.tar.gz: e7da146a774b7ce97af3ab547bf19689cf570c2fd92b664a398e5a8461cbfa54adb407d38c0971d910a4c08a26a9e9ec6ce5e295b826c4efb812e3fde1d98b82
6
+ metadata.gz: f3c62e7c4e47620beba51ecc48d24c20a50be826a464e09aed3f540fb292905af1b0c2a5b72fb36ecd1f9e6b6018eec7f45828f43f71cda886119aa30a3c4fbf
7
+ data.tar.gz: 4227245150259933da5b528016318d1295a321f1ae20edf7aa66dfe83a434f3c4e6d490c0aa88b983e15dd51d9c233cf68c74c585b1a4e8ad165fb07e9e21f59
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudtasks_v2beta3
2
2
 
3
+ ### v0.26.0 (2023-02-12)
4
+
5
+ * Regenerated from discovery document revision 20230201
6
+
3
7
  ### v0.25.0 (2023-01-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20230105
@@ -323,22 +323,22 @@ module Google
323
323
  # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
324
324
  # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
325
325
  # email address that represents a Google group. For example, `admins@example.com`
326
- # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
327
- # identifier) representing a user that has been recently deleted. For example, `
328
- # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
329
- # value reverts to `user:`emailid`` and the recovered user retains the role in
330
- # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
331
- # address (plus unique identifier) representing a service account that has been
332
- # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
326
+ # . * `domain:`domain``: The G Suite domain (primary) that represents all the
327
+ # users of that domain. For example, `google.com` or `example.com`. * `deleted:
328
+ # user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
329
+ # representing a user that has been recently deleted. For example, `alice@
330
+ # example.com?uid=123456789012345678901`. If the user is recovered, this value
331
+ # reverts to `user:`emailid`` and the recovered user retains the role in the
332
+ # binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
333
+ # (plus unique identifier) representing a service account that has been recently
334
+ # deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
333
335
  # 123456789012345678901`. If the service account is undeleted, this value
334
336
  # reverts to `serviceAccount:`emailid`` and the undeleted service account
335
337
  # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
336
338
  # An email address (plus unique identifier) representing a Google group that has
337
339
  # been recently deleted. For example, `admins@example.com?uid=
338
340
  # 123456789012345678901`. If the group is recovered, this value reverts to `
339
- # group:`emailid`` and the recovered group retains the role in the binding. * `
340
- # domain:`domain``: The G Suite domain (primary) that represents all the users
341
- # of that domain. For example, `google.com` or `example.com`.
341
+ # group:`emailid`` and the recovered group retains the role in the binding.
342
342
  # Corresponds to the JSON property `members`
343
343
  # @return [Array<String>]
344
344
  attr_accessor :members
@@ -686,15 +686,17 @@ module Google
686
686
  # Headers can be set when the task is created. These headers represent a subset
687
687
  # of the headers that will accompany the task's HTTP request. Some HTTP request
688
688
  # headers will be ignored or replaced. A partial list of headers that will be
689
- # ignored or replaced is: * Host: This will be computed by Cloud Tasks and
690
- # derived from HttpRequest.url. * Content-Length: This will be computed by Cloud
691
- # Tasks. * User-Agent: This will be set to `"Google-Cloud-Tasks"`. * `X-Google-*`
692
- # : Google use only. * `X-AppEngine-*`: Google use only. `Content-Type` won't be
693
- # set by Cloud Tasks. You can explicitly set `Content-Type` to a media type when
694
- # the task is created. For example, `Content-Type` can be set to `"application/
695
- # octet-stream"` or `"application/json"`. Headers which can have multiple values
696
- # (according to RFC2616) can be specified using comma-separated values. The size
697
- # of the headers must be less than 80KB.
689
+ # ignored or replaced is: * Any header that is prefixed with "X-CloudTasks-"
690
+ # will be treated as service header. Service headers define properties of the
691
+ # task and are predefined in CloudTask. * Host: This will be computed by Cloud
692
+ # Tasks and derived from HttpRequest.url. * Content-Length: This will be
693
+ # computed by Cloud Tasks. * User-Agent: This will be set to `"Google-Cloud-
694
+ # Tasks"`. * `X-Google-*`: Google use only. * `X-AppEngine-*`: Google use only. `
695
+ # Content-Type` won't be set by Cloud Tasks. You can explicitly set `Content-
696
+ # Type` to a media type when the task is created. For example, `Content-Type`
697
+ # can be set to `"application/octet-stream"` or `"application/json"`. Headers
698
+ # which can have multiple values (according to RFC2616) can be specified using
699
+ # comma-separated values. The size of the headers must be less than 80KB.
698
700
  # Corresponds to the JSON property `headers`
699
701
  # @return [Hash<String,String>]
700
702
  attr_accessor :headers
@@ -755,17 +757,17 @@ module Google
755
757
  # headers represent a subset of the headers that will be configured for the task'
756
758
  # s HTTP request. Some HTTP request headers will be ignored or replaced. A
757
759
  # partial list of headers that will be ignored or replaced is: * Several
758
- # predefined headers, prefixed with "X-Google-Cloud-Tasks-", can be used to
759
- # define properties of the task. * Host: This will be computed by Cloud Tasks
760
- # and derived from HttpRequest.url. * Content-Length: This will be computed by
761
- # Cloud Tasks. `Content-Type` won't be set by Cloud Tasks. You can explicitly
762
- # set `Content-Type` to a media type when the task is created. For example,`
763
- # Content-Type` can be set to `"application/octet-stream"` or `"application/json"
764
- # `. The default value is set to "application/json"`. * User-Agent: This will be
765
- # set to `"Google-Cloud-Tasks"`. Headers which can have multiple values (
766
- # according to RFC2616) can be specified using comma-separated values. The size
767
- # of the headers must be less than 80KB. Queue-level headers to override headers
768
- # of all the tasks in the queue.
760
+ # predefined headers, prefixed with "X-CloudTasks-", can be used to define
761
+ # properties of the task. * Host: This will be computed by Cloud Tasks and
762
+ # derived from HttpRequest.url. * Content-Length: This will be computed by Cloud
763
+ # Tasks. `Content-Type` won't be set by Cloud Tasks. You can explicitly set `
764
+ # Content-Type` to a media type when the task is created. For example,`Content-
765
+ # Type` can be set to `"application/octet-stream"` or `"application/json"`. The
766
+ # default value is set to "application/json"`. * User-Agent: This will be set to
767
+ # `"Google-Cloud-Tasks"`. Headers which can have multiple values (according to
768
+ # RFC2616) can be specified using comma-separated values. The size of the
769
+ # headers must be less than 80KB. Queue-level headers to override headers of all
770
+ # the tasks in the queue.
769
771
  # Corresponds to the JSON property `headerOverrides`
770
772
  # @return [Array<Google::Apis::CloudtasksV2beta3::HeaderOverride>]
771
773
  attr_accessor :header_overrides
@@ -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.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230105"
25
+ REVISION = "20230201"
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_v2beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.26.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-01-15 00:00:00.000000000 Z
11
+ date: 2023-02-12 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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2beta3/v0.26.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: []