Class: Google::Apis::IamV2beta::GoogleIamV2betaDenyRule
- Inherits:
-
Object
- Object
- Google::Apis::IamV2beta::GoogleIamV2betaDenyRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v2beta/classes.rb,
lib/google/apis/iam_v2beta/representations.rb,
lib/google/apis/iam_v2beta/representations.rb
Overview
A deny rule in an IAM deny policy.
Instance Attribute Summary collapse
-
#denial_condition ⇒ Google::Apis::IamV2beta::GoogleTypeExpr
Represents a textual expression in the Common Expression Language (CEL) syntax.
-
#denied_permissions ⇒ Array<String>
The permissions that are explicitly denied by this rule.
-
#denied_principals ⇒ Array<String>
The identities that are prevented from using one or more permissions on Google Cloud resources.
-
#exception_permissions ⇒ Array<String>
Specifies the permissions that this rule excludes from the set of denied permissions given by
denied_permissions. -
#exception_principals ⇒ Array<String>
The identities that are excluded from the deny rule, even if they are listed in the
denied_principals.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIamV2betaDenyRule
constructor
A new instance of GoogleIamV2betaDenyRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleIamV2betaDenyRule
Returns a new instance of GoogleIamV2betaDenyRule.
247 248 249 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#denial_condition ⇒ Google::Apis::IamV2beta::GoogleTypeExpr
Represents a textual expression in the Common Expression Language (CEL) syntax.
CEL is a C-like expression language. The syntax and semantics of CEL are
documented at https://github.com/google/cel-spec. Example (Comparison): title:
"Summary size limit" description: "Determines if a summary is less than 100
chars" expression: "document.summary.size() < 100" Example (Equality): title: "
Requestor is owner" description: "Determines if requestor is the document
owner" expression: "document.owner == request.auth.claims.email" Example (
Logic): title: "Public documents" description: "Determine whether the document
should be publicly visible" expression: "document.type != 'private' &&
document.type != 'internal'" Example (Data Manipulation): title: "Notification
string" description: "Create a notification string with a timestamp."
expression: "'New message received at ' + string(document.create_time)" The
exact variables and functions that may be referenced within an expression are
determined by the service that evaluates it. See the service documentation for
additional information.
Corresponds to the JSON property denialCondition
187 188 189 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 187 def denial_condition @denial_condition end |
#denied_permissions ⇒ Array<String>
The permissions that are explicitly denied by this rule. Each permission uses
the format service-fqdn`/`resource`.`verb, where service-fqdn is the
fully qualified domain name for the service. For example, iam.googleapis.com/
roles.list.
Corresponds to the JSON property deniedPermissions
195 196 197 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 195 def @denied_permissions end |
#denied_principals ⇒ Array<String>
The identities that are prevented from using one or more permissions on Google
Cloud resources. This field can contain the following values: * principalSet:/
/goog/public:all: A special identifier that represents any user who is on the
internet, even if they do not have a Google Account or are not logged in. *
principal://goog/subject/email-id: A specific Google Account. Includes
Gmail, Cloud Identity, and Google Workspace user accounts. For example, `
principal://goog/subject/alice@example.com`. * `deleted:principal://goog/
subject/`email-id`?uid=`uid: A specific Google Account that was deleted
recently. For example, deleted:principal://goog/subject/alice@example.com?uid=
1234567890. If the Google Account is recovered, this identifier reverts to
the standard identifier for a Google Account. * principalSet://goog/group/
group-id: A Google group. For example, `principalSet://goog/group/admins@
example.com`. * `deleted:principalSet://goog/group/`group-id`?uid=`uid: A
Google group that was deleted recently. For example, deleted:principalSet://
goog/group/admins@example.com?uid=1234567890. If the Google group is restored,
this identifier reverts to the standard identifier for a Google group. *
principal://iam.googleapis.com/projects/-/serviceAccounts/service-account-id
: A Google Cloud service account. For example, `principal://iam.googleapis.com/
projects/-/serviceAccounts/my-service-account@iam.gserviceaccount.com`. * `
deleted:principal://iam.googleapis.com/projects/-/serviceAccounts/`service-
account-id`?uid=`uid: A Google Cloud service account that was deleted
recently. For example, deleted:principal://iam.googleapis.com/projects/-/
serviceAccounts/my-service-account@iam.gserviceaccount.com?uid=1234567890. If
the service account is undeleted, this identifier reverts to the standard
identifier for a service account. * principalSet://goog/
cloudIdentityCustomerId/customer-id`: All of the principals associated with
the specified Google Workspace or Cloud Identity customer ID. For example,
principalSet://goog/cloudIdentityCustomerId/C01Abc35.
Corresponds to the JSON propertydeniedPrincipals`
227 228 229 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 227 def denied_principals @denied_principals end |
#exception_permissions ⇒ Array<String>
Specifies the permissions that this rule excludes from the set of denied
permissions given by denied_permissions. If a permission appears in
denied_permissions and in exception_permissions then it will not be
denied. The excluded permissions can be specified using the same syntax as
denied_permissions.
Corresponds to the JSON property exceptionPermissions
236 237 238 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 236 def @exception_permissions end |
#exception_principals ⇒ Array<String>
The identities that are excluded from the deny rule, even if they are listed
in the denied_principals. For example, you could add a Google group to the
denied_principals, then exclude specific users who belong to that group. This
field can contain the same values as the denied_principals field, excluding
principalSet://goog/public:all, which represents all users on the internet.
Corresponds to the JSON property exceptionPrincipals
245 246 247 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 245 def exception_principals @exception_principals end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
252 253 254 255 256 257 258 |
# File 'lib/google/apis/iam_v2beta/classes.rb', line 252 def update!(**args) @denial_condition = args[:denial_condition] if args.key?(:denial_condition) @denied_permissions = args[:denied_permissions] if args.key?(:denied_permissions) @denied_principals = args[:denied_principals] if args.key?(:denied_principals) @exception_permissions = args[:exception_permissions] if args.key?(:exception_permissions) @exception_principals = args[:exception_principals] if args.key?(:exception_principals) end |