google-apis-cloudtasks_v2beta2 0.31.0 → 0.32.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/cloudtasks_v2beta2/classes.rb +23 -23
- data/lib/google/apis/cloudtasks_v2beta2/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5bf97aa64abfa96c341c37b5ca567c1ca0b005c03f924134c48e8e41c2a4c2d0
|
|
4
|
+
data.tar.gz: 0f6a6a7aaa8976e5f8fb92b04d6ace4c441f734d56787ac9ae6ae56492197e60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee0f8cf86358d3dda3a4734b253c8f2bbe887e301221d9c17d6349da14dd94a25179fda53368cccb0af0bf225fc47f23529f6f607f2834cb9115bea969764137
|
|
7
|
+
data.tar.gz: 381fc2cb5c6a9c867f04228da1c05afd53cd99381cf7d732514fa457e50ae00617ffcd9665e88a5f60f2479ded529c31f952b6bff2add37dbd388bd91fc5fb72
|
data/CHANGELOG.md
CHANGED
|
@@ -364,22 +364,22 @@ module Google
|
|
|
364
364
|
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
|
365
365
|
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
|
366
366
|
# email address that represents a Google group. For example, `admins@example.com`
|
|
367
|
-
# . * `
|
|
368
|
-
#
|
|
369
|
-
#
|
|
370
|
-
#
|
|
371
|
-
# the
|
|
372
|
-
#
|
|
373
|
-
#
|
|
367
|
+
# . * `domain:`domain``: The G Suite domain (primary) that represents all the
|
|
368
|
+
# users of that domain. For example, `google.com` or `example.com`. * `deleted:
|
|
369
|
+
# user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
|
370
|
+
# representing a user that has been recently deleted. For example, `alice@
|
|
371
|
+
# example.com?uid=123456789012345678901`. If the user is recovered, this value
|
|
372
|
+
# reverts to `user:`emailid`` and the recovered user retains the role in the
|
|
373
|
+
# binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
|
|
374
|
+
# (plus unique identifier) representing a service account that has been recently
|
|
375
|
+
# deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
|
374
376
|
# 123456789012345678901`. If the service account is undeleted, this value
|
|
375
377
|
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
|
376
378
|
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
|
377
379
|
# An email address (plus unique identifier) representing a Google group that has
|
|
378
380
|
# been recently deleted. For example, `admins@example.com?uid=
|
|
379
381
|
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
|
380
|
-
# group:`emailid`` and the recovered group retains the role in the binding.
|
|
381
|
-
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
|
382
|
-
# of that domain. For example, `google.com` or `example.com`.
|
|
382
|
+
# group:`emailid`` and the recovered group retains the role in the binding.
|
|
383
383
|
# Corresponds to the JSON property `members`
|
|
384
384
|
# @return [Array<String>]
|
|
385
385
|
attr_accessor :members
|
|
@@ -745,14 +745,14 @@ module Google
|
|
|
745
745
|
# headers represent a subset of the headers that will accompany the task's HTTP
|
|
746
746
|
# request. Some HTTP request headers will be ignored or replaced. A partial list
|
|
747
747
|
# of headers that will be ignored or replaced is: * Any header that is prefixed
|
|
748
|
-
# with "X-
|
|
749
|
-
#
|
|
750
|
-
#
|
|
751
|
-
#
|
|
752
|
-
#
|
|
753
|
-
#
|
|
754
|
-
#
|
|
755
|
-
#
|
|
748
|
+
# with "X-CloudTasks-" will be treated as service header. Service headers define
|
|
749
|
+
# properties of the task and are predefined in CloudTask. * Host: This will be
|
|
750
|
+
# computed by Cloud Tasks and derived from HttpRequest.url. * Content-Length:
|
|
751
|
+
# This will be computed by Cloud Tasks. * User-Agent: This will be set to `"
|
|
752
|
+
# Google-Cloud-Tasks"`. * `X-Google-*`: Google use only. * `X-AppEngine-*`:
|
|
753
|
+
# Google use only. `Content-Type` won't be set by Cloud Tasks. You can
|
|
754
|
+
# explicitly set `Content-Type` to a media type when the task is created. For
|
|
755
|
+
# example, `Content-Type` can be set to `"application/octet-stream"` or `"
|
|
756
756
|
# application/json"`. Headers which can have multiple values (according to
|
|
757
757
|
# RFC2616) can be specified using comma-separated values. The size of the
|
|
758
758
|
# headers must be less than 80KB.
|
|
@@ -816,11 +816,11 @@ module Google
|
|
|
816
816
|
# These headers represent a subset of the headers that will accompany the task's
|
|
817
817
|
# HTTP request. Some HTTP request headers will be ignored or replaced. A partial
|
|
818
818
|
# list of headers that will be ignored or replaced is: * Any header that is
|
|
819
|
-
# prefixed with "X-
|
|
820
|
-
#
|
|
821
|
-
#
|
|
822
|
-
#
|
|
823
|
-
#
|
|
819
|
+
# prefixed with "X-CloudTasks-" will be treated as service header. Service
|
|
820
|
+
# headers define properties of the task and are predefined in CloudTask. * Host:
|
|
821
|
+
# This will be computed by Cloud Tasks and derived from HttpRequest.url. *
|
|
822
|
+
# Content-Length: This will be computed by Cloud Tasks. * User-Agent: This will
|
|
823
|
+
# be set to `"Google-CloudTasks"`. * `X-Google-*`: Google use only. * `X-
|
|
824
824
|
# AppEngine-*`: Google use only. `Content-Type` won't be set by Cloud Tasks. You
|
|
825
825
|
# can explicitly set `Content-Type` to a media type when the task is created.
|
|
826
826
|
# For example, `Content-Type` can be set to `"application/octet-stream"` or `"
|
|
@@ -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.32.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 = "
|
|
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_v2beta2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.32.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-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_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.32.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: []
|