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.
1022 1023 1024 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1022 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
1020 1021 1022 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1020 def @matched_permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1027 1028 1029 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1027 def update!(**args) @matched_permissions = args[:matched_permissions] if args.key?(:matched_permissions) end |