Class: Google::Apis::CloudassetV1::Explanation
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::Explanation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/representations.rb
Overview
Explanation about the IAM policy search result.
Instance Attribute Summary collapse
-
#matched_permissions ⇒ Hash<String,Google::Apis::CloudassetV1::Permissions>
The map from roles to their included permissions that match the permission query (i.e., a query containing
policy.role.permissions:).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Explanation
constructor
A new instance of Explanation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Explanation
Returns a new instance of Explanation.
788 789 790 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 788 def initialize(**args) update!(**args) end |
Instance Attribute Details
#matched_permissions ⇒ Hash<String,Google::Apis::CloudassetV1::Permissions>
The map from roles to their included permissions that match the permission
query (i.e., a query containing policy.role.permissions:). Example: if query
policy.role.permissions:compute.disk.get matches a policy binding that
contains owner role, the matched_permissions will be "roles/owner": ["
compute.disk.get"]. The roles can also be found in the returned policy
bindings. Note that the map is populated only for requests with permission
queries.
Corresponds to the JSON property matchedPermissions
786 787 788 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 786 def @matched_permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
793 794 795 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 793 def update!(**args) @matched_permissions = args[:matched_permissions] if args.key?(:matched_permissions) end |