Class: Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1BindingExplanation
- Inherits:
-
Object
- Object
- Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1BindingExplanation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/policysimulator_v1/classes.rb,
lib/google/apis/policysimulator_v1/representations.rb,
lib/google/apis/policysimulator_v1/representations.rb
Overview
Details about how a binding in a policy affects a principal's ability to use a permission.
Instance Attribute Summary collapse
-
#access ⇒ String
Required.
-
#condition ⇒ Google::Apis::PolicysimulatorV1::GoogleTypeExpr
Represents a textual expression in the Common Expression Language (CEL) syntax.
-
#memberships ⇒ Hash<String,Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1BindingExplanationAnnotatedMembership>
Indicates whether each principal in the binding includes the principal specified in the request, either directly or indirectly.
-
#relevance ⇒ String
The relevance of this binding to the overall determination for the entire policy.
-
#role ⇒ String
The role that this binding grants.
-
#role_permission ⇒ String
Indicates whether the role granted by this binding contains the specified permission.
-
#role_permission_relevance ⇒ String
The relevance of the permission's existence, or nonexistence, in the role to the overall determination for the entire policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1BindingExplanation
constructor
A new instance of GoogleCloudPolicysimulatorV1BindingExplanation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1BindingExplanation
Returns a new instance of GoogleCloudPolicysimulatorV1BindingExplanation.
511 512 513 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 511 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access ⇒ String
Required. Indicates whether this binding provides the specified permission
to the specified principal for the specified resource. This field does not
indicate whether the principal actually has the permission for the resource.
There might be another binding that overrides this binding. To determine
whether the principal actually has the permission, use the access
field in
the TroubleshootIamPolicyResponse.
Corresponds to the JSON property access
449 450 451 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 449 def access @access end |
#condition ⇒ Google::Apis::PolicysimulatorV1::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 condition
468 469 470 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 468 def condition @condition end |
#memberships ⇒ Hash<String,Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1BindingExplanationAnnotatedMembership>
Indicates whether each principal in the binding includes the principal
specified in the request, either directly or indirectly. Each key identifies a
principal in the binding, and each value indicates whether the principal in
the binding includes the principal in the request. For example, suppose that a
binding includes the following principals: * user:alice@example.com
* group:
product-eng@example.com
The principal in the replayed access tuple is user:
bob@example.com
. This user is a principal of the group group:product-eng@
example.com
. For the first principal in the binding, the key is user:alice@
example.com
, and the membership
field in the value is set to
MEMBERSHIP_NOT_INCLUDED
. For the second principal in the binding, the key is
group:product-eng@example.com
, and the membership
field in the value is set
to MEMBERSHIP_INCLUDED
.
Corresponds to the JSON property memberships
484 485 486 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 484 def memberships @memberships end |
#relevance ⇒ String
The relevance of this binding to the overall determination for the entire
policy.
Corresponds to the JSON property relevance
490 491 492 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 490 def relevance @relevance end |
#role ⇒ String
The role that this binding grants. For example, roles/compute.serviceAgent
.
For a complete list of predefined IAM roles, as well as the permissions in
each role, see https://cloud.google.com/iam/help/roles/reference.
Corresponds to the JSON property role
497 498 499 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 497 def role @role end |
#role_permission ⇒ String
Indicates whether the role granted by this binding contains the specified
permission.
Corresponds to the JSON property rolePermission
503 504 505 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 503 def @role_permission end |
#role_permission_relevance ⇒ String
The relevance of the permission's existence, or nonexistence, in the role to
the overall determination for the entire policy.
Corresponds to the JSON property rolePermissionRelevance
509 510 511 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 509 def @role_permission_relevance end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
516 517 518 519 520 521 522 523 524 |
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 516 def update!(**args) @access = args[:access] if args.key?(:access) @condition = args[:condition] if args.key?(:condition) @memberships = args[:memberships] if args.key?(:memberships) @relevance = args[:relevance] if args.key?(:relevance) @role = args[:role] if args.key?(:role) @role_permission = args[:role_permission] if args.key?(:role_permission) @role_permission_relevance = args[:role_permission_relevance] if args.key?(:role_permission_relevance) end |