google-apis-cloudtasks_v2 0.10.0 → 0.11.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: cc309b4f94c8d0506abe1ce70547e78831a417c8c99d283be9d363e86b29af57
4
- data.tar.gz: 0351e4bd38e9a9174f8adbd8fa3e059814aa57a4680bce20962ed7c5954190d4
3
+ metadata.gz: 186b5194f4e752ecaad4ee72292f962a05fa2a2a3b8aa094bef4c9204db3c966
4
+ data.tar.gz: f0bfa9a62b567a6ce952365810416286dbee3fb47260627c322a4697e401f7ec
5
5
  SHA512:
6
- metadata.gz: 0e3c2ecb15bdfe5e8254c1c3d83178f67ea5943324fe08d2f7dae433b51a210a3b200a8b4049257749b0e13f698c7ce02773c04806eb2ba661cfff181e3bee82
7
- data.tar.gz: 97a00537eaf5f49d506bf5c839c357eb387da1c987951c623a0971fcaeda56591f3272aadf9c92616debac7dbb0cc941ce1e811b7407893b9863de77df126fd9
6
+ metadata.gz: c9a8fa77d24037e79429a3c551ae106620a3937891971ed7304d3bd52829d26946911d51f5b04e42585ffa72c27f9f740b9e13439690451e937393c4dbb8e498
7
+ data.tar.gz: 815cb2ce3e656aec8b44a549c1067ee1db24723083473be01a003dceb724099cf9a0cbdde62c7247a5a328ce29ceb3a3b752d4d60b394508730f5bf595ae36e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudtasks_v2
2
2
 
3
+ ### v0.11.0 (2021-10-28)
4
+
5
+ * Regenerated from discovery document revision 20211015
6
+
3
7
  ### v0.10.0 (2021-10-20)
4
8
 
5
9
  * Unspecified changes
@@ -258,7 +258,7 @@ module Google
258
258
  end
259
259
  end
260
260
 
261
- # Associates `members` with a `role`.
261
+ # Associates `members`, or principals, with a `role`.
262
262
  class Binding
263
263
  include Google::Apis::Core::Hashable
264
264
 
@@ -281,7 +281,7 @@ module Google
281
281
  # @return [Google::Apis::CloudtasksV2::Expr]
282
282
  attr_accessor :condition
283
283
 
284
- # Specifies the identities requesting access for a Cloud Platform resource. `
284
+ # Specifies the principals requesting access for a Cloud Platform resource. `
285
285
  # members` can have the following values: * `allUsers`: A special identifier
286
286
  # that represents anyone who is on the internet; with or without a Google
287
287
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -311,8 +311,8 @@ module Google
311
311
  # @return [Array<String>]
312
312
  attr_accessor :members
313
313
 
314
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
315
- # , or `roles/owner`.
314
+ # Role that is assigned to the list of `members`, or principals. For example, `
315
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
316
316
  # Corresponds to the JSON property `role`
317
317
  # @return [String]
318
318
  attr_accessor :role
@@ -770,37 +770,42 @@ module Google
770
770
 
771
771
  # An Identity and Access Management (IAM) policy, which specifies access
772
772
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
773
- # A `binding` binds one or more `members` to a single `role`. Members can be
774
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
775
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
776
- # role or a user-created custom role. For some types of Google Cloud resources,
777
- # a `binding` can also specify a `condition`, which is a logical expression that
778
- # allows access to a resource only if the expression evaluates to `true`. A
779
- # condition can add constraints based on attributes of the request, the resource,
780
- # or both. To learn which resources support conditions in their IAM policies,
781
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
782
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
783
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
784
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
785
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
786
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
787
- # title": "expirable access", "description": "Does not grant access after Sep
788
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
789
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
790
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
791
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
792
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
793
- # roles/resourcemanager.organizationViewer condition: title: expirable access
794
- # description: Does not grant access after Sep 2020 expression: request.time <
795
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
796
- # description of IAM and its features, see the [IAM documentation](https://cloud.
797
- # google.com/iam/docs/).
773
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
774
+ # Principals can be user accounts, service accounts, Google groups, and domains (
775
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
776
+ # an IAM predefined role or a user-created custom role. For some types of Google
777
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
778
+ # logical expression that allows access to a resource only if the expression
779
+ # evaluates to `true`. A condition can add constraints based on attributes of
780
+ # the request, the resource, or both. To learn which resources support
781
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
782
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
783
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
784
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
785
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
786
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
787
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
788
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
789
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
790
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
791
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
792
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
793
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
794
+ # access description: Does not grant access after Sep 2020 expression: request.
795
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
796
+ # a description of IAM and its features, see the [IAM documentation](https://
797
+ # cloud.google.com/iam/docs/).
798
798
  class Policy
799
799
  include Google::Apis::Core::Hashable
800
800
 
801
- # Associates a list of `members` to a `role`. Optionally, may specify a `
802
- # condition` that determines how and when the `bindings` are applied. Each of
803
- # the `bindings` must contain at least one member.
801
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
802
+ # specify a `condition` that determines how and when the `bindings` are applied.
803
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
804
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
805
+ # can be Google groups. Each occurrence of a principal counts towards these
806
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
807
+ # example.com`, and not to any other principal, then you can add another 1,450
808
+ # principals to the `bindings` in the `Policy`.
804
809
  # Corresponds to the JSON property `bindings`
805
810
  # @return [Array<Google::Apis::CloudtasksV2::Binding>]
806
811
  attr_accessor :bindings
@@ -1138,31 +1143,31 @@ module Google
1138
1143
 
1139
1144
  # An Identity and Access Management (IAM) policy, which specifies access
1140
1145
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1141
- # A `binding` binds one or more `members` to a single `role`. Members can be
1142
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1143
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1144
- # role or a user-created custom role. For some types of Google Cloud resources,
1145
- # a `binding` can also specify a `condition`, which is a logical expression that
1146
- # allows access to a resource only if the expression evaluates to `true`. A
1147
- # condition can add constraints based on attributes of the request, the resource,
1148
- # or both. To learn which resources support conditions in their IAM policies,
1149
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1150
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1151
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1152
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1153
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1154
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1155
- # title": "expirable access", "description": "Does not grant access after Sep
1156
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1157
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1158
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1159
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1160
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1161
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1162
- # description: Does not grant access after Sep 2020 expression: request.time <
1163
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1164
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1165
- # google.com/iam/docs/).
1146
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1147
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1148
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1149
+ # an IAM predefined role or a user-created custom role. For some types of Google
1150
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1151
+ # logical expression that allows access to a resource only if the expression
1152
+ # evaluates to `true`. A condition can add constraints based on attributes of
1153
+ # the request, the resource, or both. To learn which resources support
1154
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1155
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1156
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1157
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1158
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1159
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1160
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1161
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1162
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1163
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1164
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1165
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1166
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1167
+ # access description: Does not grant access after Sep 2020 expression: request.
1168
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1169
+ # a description of IAM and its features, see the [IAM documentation](https://
1170
+ # cloud.google.com/iam/docs/).
1166
1171
  # Corresponds to the JSON property `policy`
1167
1172
  # @return [Google::Apis::CloudtasksV2::Policy]
1168
1173
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudtasksV2
18
18
  # Version of the google-apis-cloudtasks_v2 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210830"
25
+ REVISION = "20211015"
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_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2021-11-01 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudtasks_v2/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudtasks_v2
63
63
  post_install_message:
64
64
  rdoc_options: []