Class: Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysisResult

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudasset_v1p4beta1/classes.rb,
lib/google/apis/cloudasset_v1p4beta1/representations.rb,
lib/google/apis/cloudasset_v1p4beta1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IamPolicyAnalysisResult

Returns a new instance of IamPolicyAnalysisResult.



2143
2144
2145
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2143

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_control_listsArray<Google::Apis::CloudassetV1p4beta1::GoogleCloudAssetV1p4beta1AccessControlList>

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



2118
2119
2120
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2118

def access_control_lists
  @access_control_lists
end

#attached_resource_full_nameString

The full resource name of the resource to which the iam_binding policy attaches. Corresponds to the JSON property attachedResourceFullName

Returns:

  • (String)


2124
2125
2126
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2124

def attached_resource_full_name
  @attached_resource_full_name
end

#fully_exploredBoolean Also known as: fully_explored?

Represents whether all analyses on the iam_binding have successfully finished. Corresponds to the JSON property fullyExplored

Returns:

  • (Boolean)


2129
2130
2131
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2129

def fully_explored
  @fully_explored
end

#iam_bindingGoogle::Apis::CloudassetV1p4beta1::Binding

Associates members with a role. Corresponds to the JSON property iamBinding



2135
2136
2137
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2135

def iam_binding
  @iam_binding
end

#identity_listGoogle::Apis::CloudassetV1p4beta1::GoogleCloudAssetV1p4beta1IdentityList

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



2141
2142
2143
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2141

def identity_list
  @identity_list
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2148
2149
2150
2151
2152
2153
2154
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 2148

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