Class: Google::Apis::CloudassetV1::IamPolicyAnalysisResult
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::IamPolicyAnalysisResult
- 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
IAM Policy analysis result, consisting of one IAM policy binding and derived access control lists.
Instance Attribute Summary collapse
-
#access_control_lists ⇒ Array<Google::Apis::CloudassetV1::GoogleCloudAssetV1AccessControlList>
The access control lists derived from the iam_binding that match or potentially match resource and access selectors specified in the request.
-
#attached_resource_full_name ⇒ String
The full resource name of the resource to which the iam_binding policy attaches.
-
#fully_explored ⇒ Boolean
(also: #fully_explored?)
Represents whether all analyses on the iam_binding have successfully finished.
-
#iam_binding ⇒ Google::Apis::CloudassetV1::Binding
Associates
memberswith arole. -
#identity_list ⇒ Google::Apis::CloudassetV1::GoogleCloudAssetV1IdentityList
The identities and group edges.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IamPolicyAnalysisResult
constructor
A new instance of IamPolicyAnalysisResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IamPolicyAnalysisResult
Returns a new instance of IamPolicyAnalysisResult.
2711 2712 2713 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2711 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_control_lists ⇒ Array<Google::Apis::CloudassetV1::GoogleCloudAssetV1AccessControlList>
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
2687 2688 2689 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2687 def access_control_lists @access_control_lists end |
#attached_resource_full_name ⇒ String
The full resource name of the resource to which the iam_binding policy attaches.
Corresponds to the JSON property attachedResourceFullName
2693 2694 2695 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2693 def attached_resource_full_name @attached_resource_full_name end |
#fully_explored ⇒ Boolean Also known as: fully_explored?
Represents whether all analyses on the iam_binding have successfully finished.
Corresponds to the JSON property fullyExplored
2698 2699 2700 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2698 def fully_explored @fully_explored end |
#iam_binding ⇒ Google::Apis::CloudassetV1::Binding
Associates members with a role.
Corresponds to the JSON property iamBinding
2704 2705 2706 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2704 def iam_binding @iam_binding end |
#identity_list ⇒ Google::Apis::CloudassetV1::GoogleCloudAssetV1IdentityList
The identities and group edges.
Corresponds to the JSON property identityList
2709 2710 2711 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2709 def identity_list @identity_list end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2716 2717 2718 2719 2720 2721 2722 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2716 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 |