google-apis-iam_v2beta 0.1.0 → 0.2.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/iam_v2beta/classes.rb +14 -14
- data/lib/google/apis/iam_v2beta/gem_version.rb +2 -2
- data/lib/google/apis/iam_v2beta/service.rb +5 -5
- 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: 49ad97ac9a7c499e935f9ff9737b0fa968a4b86fd45af687aa13e8bc9b588b13
|
|
4
|
+
data.tar.gz: 61a6d7fac435264d1ab5f9dab789b2dea0e05b01ce373522f2adfbc49efbbfc8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ccb4d325adaa6bc040bf097e7256419ee361b5f45f68a0060c1527f6dec370d33085c2ecf514f0682af4ccbf51ab0395e5c04a954ae3346313cf319cf03775c
|
|
7
|
+
data.tar.gz: 2e988e42b370aa03cec1beefa50ad1d689090b386d3888db7dc48c28d6ffc9c7dbe369dfac78d3b8b6c3d916c464414607e6e824040a77eaa1952232002acc02
|
data/CHANGELOG.md
CHANGED
|
@@ -187,7 +187,7 @@ module Google
|
|
|
187
187
|
attr_accessor :denial_condition
|
|
188
188
|
|
|
189
189
|
# The permissions that are explicitly denied by this rule. Each permission uses
|
|
190
|
-
# the format ``
|
|
190
|
+
# the format ``service_fqdn`/`resource`.`verb``, where ``service_fqdn`` is the
|
|
191
191
|
# fully qualified domain name for the service. For example, `iam.googleapis.com/
|
|
192
192
|
# roles.list`.
|
|
193
193
|
# Corresponds to the JSON property `deniedPermissions`
|
|
@@ -198,28 +198,28 @@ module Google
|
|
|
198
198
|
# Cloud resources. This field can contain the following values: * `principalSet:/
|
|
199
199
|
# /goog/public:all`: A special identifier that represents any user who is on the
|
|
200
200
|
# internet, even if they do not have a Google Account or are not logged in. * `
|
|
201
|
-
# principal://goog/subject/`
|
|
201
|
+
# principal://goog/subject/`email_id``: A specific Google Account. Includes
|
|
202
202
|
# Gmail, Cloud Identity, and Google Workspace user accounts. For example, `
|
|
203
203
|
# principal://goog/subject/alice@example.com`. * `deleted:principal://goog/
|
|
204
|
-
# subject/`
|
|
204
|
+
# subject/`email_id`?uid=`uid``: A specific Google Account that was deleted
|
|
205
205
|
# recently. For example, `deleted:principal://goog/subject/alice@example.com?uid=
|
|
206
206
|
# 1234567890`. If the Google Account is recovered, this identifier reverts to
|
|
207
207
|
# the standard identifier for a Google Account. * `principalSet://goog/group/`
|
|
208
|
-
#
|
|
209
|
-
# example.com`. * `deleted:principalSet://goog/group/`
|
|
208
|
+
# group_id``: A Google group. For example, `principalSet://goog/group/admins@
|
|
209
|
+
# example.com`. * `deleted:principalSet://goog/group/`group_id`?uid=`uid``: A
|
|
210
210
|
# Google group that was deleted recently. For example, `deleted:principalSet://
|
|
211
211
|
# goog/group/admins@example.com?uid=1234567890`. If the Google group is restored,
|
|
212
212
|
# this identifier reverts to the standard identifier for a Google group. * `
|
|
213
|
-
# principal://iam.googleapis.com/projects/-/serviceAccounts/`
|
|
213
|
+
# principal://iam.googleapis.com/projects/-/serviceAccounts/`service_account_id``
|
|
214
214
|
# : A Google Cloud service account. For example, `principal://iam.googleapis.com/
|
|
215
215
|
# projects/-/serviceAccounts/my-service-account@iam.gserviceaccount.com`. * `
|
|
216
|
-
# deleted:principal://iam.googleapis.com/projects/-/serviceAccounts/`
|
|
217
|
-
#
|
|
218
|
-
# recently. For example, `deleted:principal://iam.googleapis.com/
|
|
219
|
-
# serviceAccounts/my-service-account@iam.gserviceaccount.com?uid=
|
|
220
|
-
# the service account is undeleted, this identifier reverts to
|
|
221
|
-
# identifier for a service account. * `principalSet://goog/
|
|
222
|
-
# cloudIdentityCustomerId/`
|
|
216
|
+
# deleted:principal://iam.googleapis.com/projects/-/serviceAccounts/`
|
|
217
|
+
# service_account_id`?uid=`uid``: A Google Cloud service account that was
|
|
218
|
+
# deleted recently. For example, `deleted:principal://iam.googleapis.com/
|
|
219
|
+
# projects/-/serviceAccounts/my-service-account@iam.gserviceaccount.com?uid=
|
|
220
|
+
# 1234567890`. If the service account is undeleted, this identifier reverts to
|
|
221
|
+
# the standard identifier for a service account. * `principalSet://goog/
|
|
222
|
+
# cloudIdentityCustomerId/`customer_id``: All of the principals associated with
|
|
223
223
|
# the specified Google Workspace or Cloud Identity customer ID. For example, `
|
|
224
224
|
# principalSet://goog/cloudIdentityCustomerId/C01Abc35`.
|
|
225
225
|
# Corresponds to the JSON property `deniedPrincipals`
|
|
@@ -325,7 +325,7 @@ module Google
|
|
|
325
325
|
attr_accessor :kind
|
|
326
326
|
|
|
327
327
|
# Immutable. The resource name of the `Policy`, which must be unique. Format: `
|
|
328
|
-
# policies/`
|
|
328
|
+
# policies/`attachment_point`/denypolicies/`policy_id`` The attachment point is
|
|
329
329
|
# identified by its URL-encoded full resource name, which means that the forward-
|
|
330
330
|
# slash character, `/`, must be written as `%2F`. For example, `policies/
|
|
331
331
|
# cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies/my-
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module IamV2beta
|
|
18
18
|
# Version of the google-apis-iam_v2beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220421"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -54,7 +54,7 @@ module Google
|
|
|
54
54
|
# Creates a policy.
|
|
55
55
|
# @param [String] parent
|
|
56
56
|
# Required. The resource that the policy is attached to, along with the kind of
|
|
57
|
-
# policy to create. Format: `policies/`
|
|
57
|
+
# policy to create. Format: `policies/`attachment_point`/denypolicies` The
|
|
58
58
|
# attachment point is identified by its URL-encoded full resource name, which
|
|
59
59
|
# means that the forward-slash character, `/`, must be written as `%2F`. For
|
|
60
60
|
# example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/
|
|
@@ -99,7 +99,7 @@ module Google
|
|
|
99
99
|
# Deletes a policy. This action is permanent.
|
|
100
100
|
# @param [String] name
|
|
101
101
|
# Required. The resource name of the policy to delete. Format: `policies/`
|
|
102
|
-
#
|
|
102
|
+
# attachment_point`/denypolicies/`policy_id`` Use the URL-encoded full resource
|
|
103
103
|
# name, which means that the forward-slash character, `/`, must be written as `%
|
|
104
104
|
# 2F`. For example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%
|
|
105
105
|
# 2Fmy-project/denypolicies/my-policy`. For organizations and folders, use the
|
|
@@ -141,7 +141,7 @@ module Google
|
|
|
141
141
|
# Gets a policy.
|
|
142
142
|
# @param [String] name
|
|
143
143
|
# Required. The resource name of the policy to retrieve. Format: `policies/`
|
|
144
|
-
#
|
|
144
|
+
# attachment_point`/denypolicies/`policy_id`` Use the URL-encoded full resource
|
|
145
145
|
# name, which means that the forward-slash character, `/`, must be written as `%
|
|
146
146
|
# 2F`. For example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%
|
|
147
147
|
# 2Fmy-project/denypolicies/my-policy`. For organizations and folders, use the
|
|
@@ -179,7 +179,7 @@ module Google
|
|
|
179
179
|
# omitted.
|
|
180
180
|
# @param [String] parent
|
|
181
181
|
# Required. The resource that the policy is attached to, along with the kind of
|
|
182
|
-
# policy to list. Format: `policies/`
|
|
182
|
+
# policy to list. Format: `policies/`attachment_point`/denypolicies` The
|
|
183
183
|
# attachment point is identified by its URL-encoded full resource name, which
|
|
184
184
|
# means that the forward-slash character, `/`, must be written as `%2F`. For
|
|
185
185
|
# example, `policies/cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/
|
|
@@ -227,7 +227,7 @@ module Google
|
|
|
227
227
|
# pattern helps prevent conflicts between concurrent updates.
|
|
228
228
|
# @param [String] name
|
|
229
229
|
# Immutable. The resource name of the `Policy`, which must be unique. Format: `
|
|
230
|
-
# policies/`
|
|
230
|
+
# policies/`attachment_point`/denypolicies/`policy_id`` The attachment point is
|
|
231
231
|
# identified by its URL-encoded full resource name, which means that the forward-
|
|
232
232
|
# slash character, `/`, must be written as `%2F`. For example, `policies/
|
|
233
233
|
# cloudresourcemanager.googleapis.com%2Fprojects%2Fmy-project/denypolicies/my-
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-iam_v2beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.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: 2022-
|
|
11
|
+
date: 2022-05-02 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-iam_v2beta/CHANGELOG.md
|
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v2beta/v0.
|
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v2beta/v0.2.0
|
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v2beta
|
|
64
64
|
post_install_message:
|
|
65
65
|
rdoc_options: []
|