google-apis-cloudresourcemanager_v1 0.16.0 → 0.17.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: bd1e78873fa530b18a6bfbe03438e82d3c6a3ec14b1760ef0823eb3ff16c6d6d
4
- data.tar.gz: e54b6e7f1ba9f668f1f1e3e45b006556001de6d0399962b46132987632d9533e
3
+ metadata.gz: e4fdb8a8b4a3cf973657c64d540eea2f79b7fc6b9e03359cdc772e5b103d7f28
4
+ data.tar.gz: ea4bbc6b921b8c133b2ba01ec9c77e92f3a697f0a02771ebfdb84be9d3333ae8
5
5
  SHA512:
6
- metadata.gz: d22ea11b166fc04b869842b515b69bb5bc7a5b5c92f79617b2139858f00512c259e3f70e1532c71fb857ab9af3ea9fcc2f7ebb131f4d96781f944f33cdc739e8
7
- data.tar.gz: da17bc8cfdc8c713deab6f1322da0a9c1a34b9067ccd3af5252fdb86d1c303fc61a6f84ba0dfd58d7ef32184ce4059bb1f1b64e3df565a6b3ca5767bce3acf90
6
+ metadata.gz: 14cc90ec836e73fa60a1cde85cf324b5c248343fafd6757da67ca53f815ae4cf4c047a6c48ada8ea4967b4649b7630e63a4857f5670b87cbe9adc2abcb3f903b
7
+ data.tar.gz: f0732c2267d065ba7937c9f9a0a04961864c71ff76c60bd892b4f4dcfb3630bbe8524a1bd9664f15af4d2d2deefa864e9f88dbb4a4673abf61173a94f86936fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudresourcemanager_v1
2
2
 
3
+ ### v0.17.0 (2021-10-20)
4
+
5
+ * Regenerated from discovery document revision 20211017
6
+
3
7
  ### v0.16.0 (2021-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20211003
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Cloudresourcemanager service in particular.)
67
67
 
@@ -115,7 +115,7 @@ module Google
115
115
  end
116
116
  end
117
117
 
118
- # Associates `members` with a `role`.
118
+ # Associates `members`, or principals, with a `role`.
119
119
  class Binding
120
120
  include Google::Apis::Core::Hashable
121
121
 
@@ -138,7 +138,7 @@ module Google
138
138
  # @return [Google::Apis::CloudresourcemanagerV1::Expr]
139
139
  attr_accessor :condition
140
140
 
141
- # Specifies the identities requesting access for a Cloud Platform resource. `
141
+ # Specifies the principals requesting access for a Cloud Platform resource. `
142
142
  # members` can have the following values: * `allUsers`: A special identifier
143
143
  # that represents anyone who is on the internet; with or without a Google
144
144
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -168,8 +168,8 @@ module Google
168
168
  # @return [Array<String>]
169
169
  attr_accessor :members
170
170
 
171
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
172
- # , or `roles/owner`.
171
+ # Role that is assigned to the list of `members`, or principals. For example, `
172
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
173
173
  # Corresponds to the JSON property `role`
174
174
  # @return [String]
175
175
  attr_accessor :role
@@ -1500,31 +1500,31 @@ module Google
1500
1500
 
1501
1501
  # An Identity and Access Management (IAM) policy, which specifies access
1502
1502
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1503
- # A `binding` binds one or more `members` to a single `role`. Members can be
1504
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1505
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1506
- # role or a user-created custom role. For some types of Google Cloud resources,
1507
- # a `binding` can also specify a `condition`, which is a logical expression that
1508
- # allows access to a resource only if the expression evaluates to `true`. A
1509
- # condition can add constraints based on attributes of the request, the resource,
1510
- # or both. To learn which resources support conditions in their IAM policies,
1511
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1512
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1513
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1514
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1515
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1516
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1517
- # title": "expirable access", "description": "Does not grant access after Sep
1518
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1519
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1520
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1521
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1522
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1523
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1524
- # description: Does not grant access after Sep 2020 expression: request.time <
1525
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1526
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1527
- # google.com/iam/docs/).
1503
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1504
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1505
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1506
+ # an IAM predefined role or a user-created custom role. For some types of Google
1507
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1508
+ # logical expression that allows access to a resource only if the expression
1509
+ # evaluates to `true`. A condition can add constraints based on attributes of
1510
+ # the request, the resource, or both. To learn which resources support
1511
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1512
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1513
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1514
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1515
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1516
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1517
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1518
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1519
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1520
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1521
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1522
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1523
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1524
+ # access description: Does not grant access after Sep 2020 expression: request.
1525
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1526
+ # a description of IAM and its features, see the [IAM documentation](https://
1527
+ # cloud.google.com/iam/docs/).
1528
1528
  class Policy
1529
1529
  include Google::Apis::Core::Hashable
1530
1530
 
@@ -1533,14 +1533,14 @@ module Google
1533
1533
  # @return [Array<Google::Apis::CloudresourcemanagerV1::AuditConfig>]
1534
1534
  attr_accessor :audit_configs
1535
1535
 
1536
- # Associates a list of `members` to a `role`. Optionally, may specify a `
1537
- # condition` that determines how and when the `bindings` are applied. Each of
1538
- # the `bindings` must contain at least one member. The `bindings` in a `Policy`
1539
- # can refer to up to 1,500 members; up to 250 of these members can be Google
1540
- # groups. Each occurrence of a member counts towards these limits. For example,
1541
- # if the `bindings` grant 50 different roles to `user:alice@example.com`, and
1542
- # not to any other member, then you can add another 1,450 members to the `
1543
- # bindings` in the `Policy`.
1536
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
1537
+ # specify a `condition` that determines how and when the `bindings` are applied.
1538
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
1539
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
1540
+ # can be Google groups. Each occurrence of a principal counts towards these
1541
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
1542
+ # example.com`, and not to any other principal, then you can add another 1,450
1543
+ # principals to the `bindings` in the `Policy`.
1544
1544
  # Corresponds to the JSON property `bindings`
1545
1545
  # @return [Array<Google::Apis::CloudresourcemanagerV1::Binding>]
1546
1546
  attr_accessor :bindings
@@ -1825,31 +1825,31 @@ module Google
1825
1825
 
1826
1826
  # An Identity and Access Management (IAM) policy, which specifies access
1827
1827
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1828
- # A `binding` binds one or more `members` to a single `role`. Members can be
1829
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1830
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1831
- # role or a user-created custom role. For some types of Google Cloud resources,
1832
- # a `binding` can also specify a `condition`, which is a logical expression that
1833
- # allows access to a resource only if the expression evaluates to `true`. A
1834
- # condition can add constraints based on attributes of the request, the resource,
1835
- # or both. To learn which resources support conditions in their IAM policies,
1836
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1837
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1838
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1839
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1840
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1841
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1842
- # title": "expirable access", "description": "Does not grant access after Sep
1843
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1844
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1845
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1846
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1847
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1848
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1849
- # description: Does not grant access after Sep 2020 expression: request.time <
1850
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1851
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1852
- # google.com/iam/docs/).
1828
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1829
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1830
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1831
+ # an IAM predefined role or a user-created custom role. For some types of Google
1832
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1833
+ # logical expression that allows access to a resource only if the expression
1834
+ # evaluates to `true`. A condition can add constraints based on attributes of
1835
+ # the request, the resource, or both. To learn which resources support
1836
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1837
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1838
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1839
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1840
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1841
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1842
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1843
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1844
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1845
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1846
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1847
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1848
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1849
+ # access description: Does not grant access after Sep 2020 expression: request.
1850
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1851
+ # a description of IAM and its features, see the [IAM documentation](https://
1852
+ # cloud.google.com/iam/docs/).
1853
1853
  # Corresponds to the JSON property `policy`
1854
1854
  # @return [Google::Apis::CloudresourcemanagerV1::Policy]
1855
1855
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudresourcemanagerV1
18
18
  # Version of the google-apis-cloudresourcemanager_v1 gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.17.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 = "20211003"
25
+ REVISION = "20211017"
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-cloudresourcemanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.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-11 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.16.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudresourcemanager_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudresourcemanager_v1/v0.17.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudresourcemanager_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: