class Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysisResult

IAM Policy analysis result, consisting of one IAM policy binding and derived access control lists.

Attributes

access_control_lists[RW]

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::CloudassetV1p4beta1::GoogleCloudAssetV1p4beta1AccessControlList>]

attached_resource_full_name[RW]

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]

fully_explored[RW]

Represents whether all analyses on the iam_binding have successfully finished. Corresponds to the JSON property `fullyExplored` @return [Boolean]

fully_explored?[RW]

Represents whether all analyses on the iam_binding have successfully finished. Corresponds to the JSON property `fullyExplored` @return [Boolean]

iam_binding[RW]

Associates `members` with a `role`. Corresponds to the JSON property `iamBinding` @return [Google::Apis::CloudassetV1p4beta1::Binding]

identity_list[RW]

The identity list derived from members of the iam_binding that match or potentially match identity selector specified in the request. Corresponds to the JSON property `identityList` @return [Google::Apis::CloudassetV1p4beta1::GoogleCloudAssetV1p4beta1IdentityList]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudasset_v1p4beta1/classes.rb, line 2163
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudasset_v1p4beta1/classes.rb, line 2168
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