class Google::Apis::CloudassetV1::IamPolicyAnalysisResult
IAM Policy
analysis result, consisting of one IAM policy binding and derived access control lists.
Attributes
The access control lists derived from the iam_binding
that match or potentially match resource and access selectors specified in the request. Corresponds to the JSON property `accessControlLists` @return [Array<Google::Apis::CloudassetV1::GoogleCloudAssetV1AccessControlList>]
The [full resource name](cloud.google.com/asset-inventory/docs/ resource-name-format) of the resource to which the iam_binding
policy attaches. Corresponds to the JSON property `attachedResourceFullName` @return [String]
Represents whether all analyses on the iam_binding
have successfully finished. Corresponds to the JSON property `fullyExplored` @return [Boolean]
Represents whether all analyses on the iam_binding
have successfully finished. Corresponds to the JSON property `fullyExplored` @return [Boolean]
Associates `members` with a `role`. Corresponds to the JSON property `iamBinding` @return [Google::Apis::CloudassetV1::Binding]
The identities and group edges. Corresponds to the JSON property `identityList` @return [Google::Apis::CloudassetV1::GoogleCloudAssetV1IdentityList]
Public Class Methods
# File lib/google/apis/cloudasset_v1/classes.rb, line 2867 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 2872 def update!(**args) @access_control_lists = args[:access_control_lists] if args.key?(:access_control_lists) @attached_resource_full_name = args[:attached_resource_full_name] if args.key?(:attached_resource_full_name) @fully_explored = args[:fully_explored] if args.key?(:fully_explored) @iam_binding = args[:iam_binding] if args.key?(:iam_binding) @identity_list = args[:identity_list] if args.key?(:identity_list) end