google-apis-gkehub_v1alpha2 0.9.0 → 0.10.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: 9cd320c16472bf8d01fea29c50077b90766b9bc07dbba8e06c123566c39071f4
4
- data.tar.gz: 28c422882aa278d14bdacb5ac3cc302513e3c552b009e071c09d99b64e75b8af
3
+ metadata.gz: 444240b0f1c352920716ee99f7d8af6aa95f9929726d5cbd3633d27ac8010394
4
+ data.tar.gz: b4971982246a231db387568b34da58ca40f2a8969ce85b3460957ef48d5a9bce
5
5
  SHA512:
6
- metadata.gz: adc279fd502d379fd89da512342dd379929fffaba240f9f8816f99fefd32c33441023b42d2da921b5d4cebff71d62fb18021c86c1862a468680b23cc7e8412b8
7
- data.tar.gz: 6d28d1fedfbfd61e6d838cdaad0a32b602d3ccb4293f8ed94a110721ced57439980b21be3759513b1568c01b5a1ce4e704ae65fb39d475c5b3804153b9e02ed9
6
+ metadata.gz: 3695e5a8a17963b102b76ccf1236052adf4628b1bda2c0589c57872cfa62b6b9509d870d2833a7a6a06de4f1b3c2c46b0b176b70e89fe95fc3266fc1e0fb763c
7
+ data.tar.gz: b0e0f5dd7219fcb63d2c64f908df2189f22099f9781f1fa9d330c857bda41f1ac715b4302830218333f5c7f44ca52470ad0c5617f36433f3507e05abaaae029e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-gkehub_v1alpha2
2
2
 
3
+ ### v0.10.0 (2021-10-24)
4
+
5
+ * Regenerated from discovery document revision 20211015
6
+ * Unspecified changes
7
+
3
8
  ### v0.9.0 (2021-09-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20210827
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 Gkehub service in particular.)
67
67
 
@@ -147,7 +147,7 @@ module Google
147
147
  end
148
148
  end
149
149
 
150
- # Associates `members` with a `role`.
150
+ # Associates `members`, or principals, with a `role`.
151
151
  class Binding
152
152
  include Google::Apis::Core::Hashable
153
153
 
@@ -170,7 +170,7 @@ module Google
170
170
  # @return [Google::Apis::GkehubV1alpha2::Expr]
171
171
  attr_accessor :condition
172
172
 
173
- # Specifies the identities requesting access for a Cloud Platform resource. `
173
+ # Specifies the principals requesting access for a Cloud Platform resource. `
174
174
  # members` can have the following values: * `allUsers`: A special identifier
175
175
  # that represents anyone who is on the internet; with or without a Google
176
176
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -200,8 +200,8 @@ module Google
200
200
  # @return [Array<String>]
201
201
  attr_accessor :members
202
202
 
203
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
204
- # , or `roles/owner`.
203
+ # Role that is assigned to the list of `members`, or principals. For example, `
204
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
205
205
  # Corresponds to the JSON property `role`
206
206
  # @return [String]
207
207
  attr_accessor :role
@@ -1068,31 +1068,31 @@ module Google
1068
1068
 
1069
1069
  # An Identity and Access Management (IAM) policy, which specifies access
1070
1070
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1071
- # A `binding` binds one or more `members` to a single `role`. Members can be
1072
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1073
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1074
- # role or a user-created custom role. For some types of Google Cloud resources,
1075
- # a `binding` can also specify a `condition`, which is a logical expression that
1076
- # allows access to a resource only if the expression evaluates to `true`. A
1077
- # condition can add constraints based on attributes of the request, the resource,
1078
- # or both. To learn which resources support conditions in their IAM policies,
1079
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1080
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1081
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1082
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1083
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1084
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1085
- # title": "expirable access", "description": "Does not grant access after Sep
1086
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1087
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1088
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1089
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1090
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1091
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1092
- # description: Does not grant access after Sep 2020 expression: request.time <
1093
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1094
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1095
- # google.com/iam/docs/).
1071
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1072
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1073
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1074
+ # an IAM predefined role or a user-created custom role. For some types of Google
1075
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1076
+ # logical expression that allows access to a resource only if the expression
1077
+ # evaluates to `true`. A condition can add constraints based on attributes of
1078
+ # the request, the resource, or both. To learn which resources support
1079
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1080
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1081
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1082
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1083
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1084
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1085
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1086
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1087
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1088
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1089
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1090
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1091
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1092
+ # access description: Does not grant access after Sep 2020 expression: request.
1093
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1094
+ # a description of IAM and its features, see the [IAM documentation](https://
1095
+ # cloud.google.com/iam/docs/).
1096
1096
  class Policy
1097
1097
  include Google::Apis::Core::Hashable
1098
1098
 
@@ -1101,9 +1101,14 @@ module Google
1101
1101
  # @return [Array<Google::Apis::GkehubV1alpha2::AuditConfig>]
1102
1102
  attr_accessor :audit_configs
1103
1103
 
1104
- # Associates a list of `members` to a `role`. Optionally, may specify a `
1105
- # condition` that determines how and when the `bindings` are applied. Each of
1106
- # the `bindings` must contain at least one member.
1104
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
1105
+ # specify a `condition` that determines how and when the `bindings` are applied.
1106
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
1107
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
1108
+ # can be Google groups. Each occurrence of a principal counts towards these
1109
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
1110
+ # example.com`, and not to any other principal, then you can add another 1,450
1111
+ # principals to the `bindings` in the `Policy`.
1107
1112
  # Corresponds to the JSON property `bindings`
1108
1113
  # @return [Array<Google::Apis::GkehubV1alpha2::Binding>]
1109
1114
  attr_accessor :bindings
@@ -1221,31 +1226,31 @@ module Google
1221
1226
 
1222
1227
  # An Identity and Access Management (IAM) policy, which specifies access
1223
1228
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1224
- # A `binding` binds one or more `members` to a single `role`. Members can be
1225
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1226
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1227
- # role or a user-created custom role. For some types of Google Cloud resources,
1228
- # a `binding` can also specify a `condition`, which is a logical expression that
1229
- # allows access to a resource only if the expression evaluates to `true`. A
1230
- # condition can add constraints based on attributes of the request, the resource,
1231
- # or both. To learn which resources support conditions in their IAM policies,
1232
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1233
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1234
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1235
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1236
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1237
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1238
- # title": "expirable access", "description": "Does not grant access after Sep
1239
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1240
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1241
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1242
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1243
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1244
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1245
- # description: Does not grant access after Sep 2020 expression: request.time <
1246
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1247
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1248
- # google.com/iam/docs/).
1229
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1230
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1231
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1232
+ # an IAM predefined role or a user-created custom role. For some types of Google
1233
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1234
+ # logical expression that allows access to a resource only if the expression
1235
+ # evaluates to `true`. A condition can add constraints based on attributes of
1236
+ # the request, the resource, or both. To learn which resources support
1237
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1238
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1239
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1240
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1241
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1242
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1243
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1244
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1245
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1246
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1247
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1248
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1249
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1250
+ # access description: Does not grant access after Sep 2020 expression: request.
1251
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1252
+ # a description of IAM and its features, see the [IAM documentation](https://
1253
+ # cloud.google.com/iam/docs/).
1249
1254
  # Corresponds to the JSON property `policy`
1250
1255
  # @return [Google::Apis::GkehubV1alpha2::Policy]
1251
1256
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha2
18
18
  # Version of the google-apis-gkehub_v1alpha2 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.10.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 = "20210827"
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-gkehub_v1alpha2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.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-09-06 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-gkehub_v1alpha2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha2/v0.9.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-gkehub_v1alpha2
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha2/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha2/v0.10.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha2
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: