google-apis-managedidentities_v1alpha1 0.15.0 → 0.16.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: bc71811e5ee2041aa6c715a9583876f4fa82841332b0578b95fd391ec80b65f9
4
- data.tar.gz: 1877db64f49e7ffdf2ab1def39de2e89e9dc026a4d8094149d5f3cb513b2699c
3
+ metadata.gz: 07d4c79e99fa67c3bff064c7ca02335b6c47f366335d898af2b08e0f157c80b6
4
+ data.tar.gz: 9c062b3059bec8da533acf7126e898ecd07070150fa100d59183bd63b3ea7e59
5
5
  SHA512:
6
- metadata.gz: c31afb3355d82b7eff2e1e5aad0464334ce8a4bfb0cfa2d5a384d5217c1ef356090145458a74553cec8be1b9be663e8caa00f3841d66a4dcabb6f282400dbfd9
7
- data.tar.gz: 5a19081b9c2506e0a3feb67c4c3eecb9a1143e7d1327958a507c72890f0905bcb301dee67c4933022277ec1be9f02ad7ed5e1ed3f4c4c6ed84165ad533e8e62e
6
+ metadata.gz: 14002e981570da96340260a93008d128898fb1a6907489429b74ea01386fe98d6a1b36bbf56945fd25eefb855a7003c6ba3e5040a03f18295bc35acb4e105100
7
+ data.tar.gz: feb47c1d34a174a58cafe9e1afedd23be3c5e83bdc029d26eb178ed675fe31973c6acf834fe1c3e77ccda99f2d27d559a5f03ecfbf5e27cbb55f730b3d3d663b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-managedidentities_v1alpha1
2
2
 
3
+ ### v0.16.0 (2021-11-14)
4
+
5
+ * Regenerated from discovery document revision 20211108
6
+
3
7
  ### v0.15.0 (2021-10-21)
4
8
 
5
9
  * Unspecified changes
@@ -103,7 +103,7 @@ module Google
103
103
  end
104
104
  end
105
105
 
106
- # Associates `members` with a `role`.
106
+ # Associates `members`, or principals, with a `role`.
107
107
  class Binding
108
108
  include Google::Apis::Core::Hashable
109
109
 
@@ -126,7 +126,7 @@ module Google
126
126
  # @return [Google::Apis::ManagedidentitiesV1alpha1::Expr]
127
127
  attr_accessor :condition
128
128
 
129
- # Specifies the identities requesting access for a Cloud Platform resource. `
129
+ # Specifies the principals requesting access for a Cloud Platform resource. `
130
130
  # members` can have the following values: * `allUsers`: A special identifier
131
131
  # that represents anyone who is on the internet; with or without a Google
132
132
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -156,8 +156,8 @@ module Google
156
156
  # @return [Array<String>]
157
157
  attr_accessor :members
158
158
 
159
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
160
- # , or `roles/owner`.
159
+ # Role that is assigned to the list of `members`, or principals. For example, `
160
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
161
161
  # Corresponds to the JSON property `role`
162
162
  # @return [String]
163
163
  attr_accessor :role
@@ -1663,42 +1663,42 @@ module Google
1663
1663
 
1664
1664
  # An Identity and Access Management (IAM) policy, which specifies access
1665
1665
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1666
- # A `binding` binds one or more `members` to a single `role`. Members can be
1667
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1668
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1669
- # role or a user-created custom role. For some types of Google Cloud resources,
1670
- # a `binding` can also specify a `condition`, which is a logical expression that
1671
- # allows access to a resource only if the expression evaluates to `true`. A
1672
- # condition can add constraints based on attributes of the request, the resource,
1673
- # or both. To learn which resources support conditions in their IAM policies,
1674
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1675
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1676
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1677
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1678
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1679
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1680
- # title": "expirable access", "description": "Does not grant access after Sep
1681
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1682
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1683
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1684
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1685
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1686
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1687
- # description: Does not grant access after Sep 2020 expression: request.time <
1688
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1689
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1690
- # google.com/iam/docs/).
1666
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1667
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1668
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1669
+ # an IAM predefined role or a user-created custom role. For some types of Google
1670
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1671
+ # logical expression that allows access to a resource only if the expression
1672
+ # evaluates to `true`. A condition can add constraints based on attributes of
1673
+ # the request, the resource, or both. To learn which resources support
1674
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1675
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1676
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1677
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1678
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1679
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1680
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1681
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1682
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1683
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1684
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1685
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1686
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1687
+ # access description: Does not grant access after Sep 2020 expression: request.
1688
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1689
+ # a description of IAM and its features, see the [IAM documentation](https://
1690
+ # cloud.google.com/iam/docs/).
1691
1691
  class Policy
1692
1692
  include Google::Apis::Core::Hashable
1693
1693
 
1694
- # Associates a list of `members` to a `role`. Optionally, may specify a `
1695
- # condition` that determines how and when the `bindings` are applied. Each of
1696
- # the `bindings` must contain at least one member. The `bindings` in a `Policy`
1697
- # can refer to up to 1,500 members; up to 250 of these members can be Google
1698
- # groups. Each occurrence of a member counts towards these limits. For example,
1699
- # if the `bindings` grant 50 different roles to `user:alice@example.com`, and
1700
- # not to any other member, then you can add another 1,450 members to the `
1701
- # bindings` in the `Policy`.
1694
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
1695
+ # specify a `condition` that determines how and when the `bindings` are applied.
1696
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
1697
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
1698
+ # can be Google groups. Each occurrence of a principal counts towards these
1699
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
1700
+ # example.com`, and not to any other principal, then you can add another 1,450
1701
+ # principals to the `bindings` in the `Policy`.
1702
1702
  # Corresponds to the JSON property `bindings`
1703
1703
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::Binding>]
1704
1704
  attr_accessor :bindings
@@ -1908,31 +1908,31 @@ module Google
1908
1908
 
1909
1909
  # An Identity and Access Management (IAM) policy, which specifies access
1910
1910
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1911
- # A `binding` binds one or more `members` to a single `role`. Members can be
1912
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1913
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1914
- # role or a user-created custom role. For some types of Google Cloud resources,
1915
- # a `binding` can also specify a `condition`, which is a logical expression that
1916
- # allows access to a resource only if the expression evaluates to `true`. A
1917
- # condition can add constraints based on attributes of the request, the resource,
1918
- # or both. To learn which resources support conditions in their IAM policies,
1919
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1920
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1921
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1922
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1923
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1924
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1925
- # title": "expirable access", "description": "Does not grant access after Sep
1926
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1927
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1928
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1929
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1930
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1931
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1932
- # description: Does not grant access after Sep 2020 expression: request.time <
1933
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1934
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1935
- # google.com/iam/docs/).
1911
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1912
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1913
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1914
+ # an IAM predefined role or a user-created custom role. For some types of Google
1915
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1916
+ # logical expression that allows access to a resource only if the expression
1917
+ # evaluates to `true`. A condition can add constraints based on attributes of
1918
+ # the request, the resource, or both. To learn which resources support
1919
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1920
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1921
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1922
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1923
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1924
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1925
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1926
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1927
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1928
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1929
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1930
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1931
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1932
+ # access description: Does not grant access after Sep 2020 expression: request.
1933
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1934
+ # a description of IAM and its features, see the [IAM documentation](https://
1935
+ # cloud.google.com/iam/docs/).
1936
1936
  # Corresponds to the JSON property `policy`
1937
1937
  # @return [Google::Apis::ManagedidentitiesV1alpha1::Policy]
1938
1938
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1alpha1
18
18
  # Version of the google-apis-managedidentities_v1alpha1 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.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 = "20211004"
25
+ REVISION = "20211108"
26
26
  end
27
27
  end
28
28
  end
@@ -302,13 +302,16 @@ module Google
302
302
  # REQUIRED: The resource for which the policy is being requested. See the
303
303
  # operation documentation for the appropriate value for this field.
304
304
  # @param [Fixnum] options_requested_policy_version
305
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
306
- # 3. Requests specifying an invalid value will be rejected. Requests for
307
- # policies with any conditional bindings must specify version 3. Policies
308
- # without any conditional bindings may specify any valid value or leave the
309
- # field unset. To learn which resources support conditions in their IAM policies,
310
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
311
- # resource-policies).
305
+ # Optional. The maximum policy version that will be used to format the policy.
306
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
307
+ # rejected. Requests for policies with any conditional role bindings must
308
+ # specify version 3. Policies with no conditional role bindings may specify any
309
+ # valid value or leave the field unset. The policy in the response might use the
310
+ # policy version that you specified, or it might use a lower policy version. For
311
+ # example, if you specify version 3, but the policy has no conditional role
312
+ # bindings, the response uses version 1. To learn which resources support
313
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
314
+ # google.com/iam/help/conditions/resource-policies).
312
315
  # @param [String] fields
313
316
  # Selector specifying which fields to include in a partial response.
314
317
  # @param [String] quota_user
@@ -813,13 +816,16 @@ module Google
813
816
  # REQUIRED: The resource for which the policy is being requested. See the
814
817
  # operation documentation for the appropriate value for this field.
815
818
  # @param [Fixnum] options_requested_policy_version
816
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
817
- # 3. Requests specifying an invalid value will be rejected. Requests for
818
- # policies with any conditional bindings must specify version 3. Policies
819
- # without any conditional bindings may specify any valid value or leave the
820
- # field unset. To learn which resources support conditions in their IAM policies,
821
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
822
- # resource-policies).
819
+ # Optional. The maximum policy version that will be used to format the policy.
820
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
821
+ # rejected. Requests for policies with any conditional role bindings must
822
+ # specify version 3. Policies with no conditional role bindings may specify any
823
+ # valid value or leave the field unset. The policy in the response might use the
824
+ # policy version that you specified, or it might use a lower policy version. For
825
+ # example, if you specify version 3, but the policy has no conditional role
826
+ # bindings, the response uses version 1. To learn which resources support
827
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
828
+ # google.com/iam/help/conditions/resource-policies).
823
829
  # @param [String] fields
824
830
  # Selector specifying which fields to include in a partial response.
825
831
  # @param [String] quota_user
@@ -1347,13 +1353,16 @@ module Google
1347
1353
  # REQUIRED: The resource for which the policy is being requested. See the
1348
1354
  # operation documentation for the appropriate value for this field.
1349
1355
  # @param [Fixnum] options_requested_policy_version
1350
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
1351
- # 3. Requests specifying an invalid value will be rejected. Requests for
1352
- # policies with any conditional bindings must specify version 3. Policies
1353
- # without any conditional bindings may specify any valid value or leave the
1354
- # field unset. To learn which resources support conditions in their IAM policies,
1355
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1356
- # resource-policies).
1356
+ # Optional. The maximum policy version that will be used to format the policy.
1357
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
1358
+ # rejected. Requests for policies with any conditional role bindings must
1359
+ # specify version 3. Policies with no conditional role bindings may specify any
1360
+ # valid value or leave the field unset. The policy in the response might use the
1361
+ # policy version that you specified, or it might use a lower policy version. For
1362
+ # example, if you specify version 3, but the policy has no conditional role
1363
+ # bindings, the response uses version 1. To learn which resources support
1364
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1365
+ # google.com/iam/help/conditions/resource-policies).
1357
1366
  # @param [String] fields
1358
1367
  # Selector specifying which fields to include in a partial response.
1359
1368
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.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-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -59,7 +59,7 @@ licenses:
59
59
  metadata:
60
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
61
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1alpha1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.15.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.16.0
63
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1alpha1
64
64
  post_install_message:
65
65
  rdoc_options: []