class Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysis

An analysis message to group the query and results.

Attributes

analysis_query[RW]

IAM policy analysis query message. Corresponds to the JSON property `analysisQuery` @return [Google::Apis::CloudassetV1p4beta1::IamPolicyAnalysisQuery]

analysis_results[RW]

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>]

fully_explored[RW]

Represents whether all entries in the analysis_results have been fully explored to answer the query. Corresponds to the JSON property `fullyExplored` @return [Boolean]

fully_explored?[RW]

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

new(**args) click to toggle source
# File lib/google/apis/cloudasset_v1p4beta1/classes.rb, line 2045
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 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