Class: Google::Apis::CloudassetV1::IamPolicyAnalysis

Inherits:
Object
  • Object
show all
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

An analysis message to group the query and results.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IamPolicyAnalysis

Returns a new instance of IamPolicyAnalysis.



2816
2817
2818
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2816

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

Instance Attribute Details

#analysis_queryGoogle::Apis::CloudassetV1::IamPolicyAnalysisQuery

IAM policy analysis query message. Corresponds to the JSON property analysisQuery



2796
2797
2798
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2796

def analysis_query
  @analysis_query
end

#analysis_resultsArray<Google::Apis::CloudassetV1::IamPolicyAnalysisResult>

A list of IamPolicyAnalysisResult that matches the analysis query, or empty if no result is found. Corresponds to the JSON property analysisResults



2802
2803
2804
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2802

def analysis_results
  @analysis_results
end

#fully_exploredBoolean Also known as: fully_explored?

Represents whether all entries in the analysis_results have been fully explored to answer the query. Corresponds to the JSON property fullyExplored

Returns:

  • (Boolean)


2808
2809
2810
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2808

def fully_explored
  @fully_explored
end

#non_critical_errorsArray<Google::Apis::CloudassetV1::IamPolicyAnalysisState>

A list of non-critical errors happened during the query handling. Corresponds to the JSON property nonCriticalErrors



2814
2815
2816
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2814

def non_critical_errors
  @non_critical_errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2821
2822
2823
2824
2825
2826
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 2821

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