class Google::Apis::CloudassetV1::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::CloudassetV1::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::CloudassetV1::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]
A list of non-critical errors happened during the query handling. Corresponds to the JSON property `nonCriticalErrors` @return [Array<Google::Apis::CloudassetV1::IamPolicyAnalysisState>]
Public Class Methods
# File lib/google/apis/cloudasset_v1/classes.rb, line 2732 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 2737 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) @non_critical_errors = args[:non_critical_errors] if args.key?(:non_critical_errors) end