class Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysis
An analysis message to group the query and results.
Attributes
IAM policy analysis query message. Corresponds to the JSON property `analysisQuery` @return [Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysisQuery]
A list of IamPolicyAnalysisResult
that matches the analysis query, or empty if no result is found. Corresponds to the JSON property `analysisResults` @return [Array<Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysisResult>]
Represents whether all entries in the analysis_results
have been fully explored to answer the query. Corresponds to the JSON property `fullyExplored` @return [Boolean]
Represents whether all entries in the analysis_results
have been fully explored to answer the query. Corresponds to the JSON property `fullyExplored` @return [Boolean]
Public Class Methods
# File lib/google/apis/cloudasset_v1p4beta1/classes.rb, line 2045 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/cloudasset_v1p4beta1/classes.rb, line 2050 def update!(**args) @analysis_query = args[:analysis_query] if args.key?(:analysis_query) @analysis_results = args[:analysis_results] if args.key?(:analysis_results) @fully_explored = args[:fully_explored] if args.key?(:fully_explored) end