Class: Google::Apis::OndemandscanningV1beta1::AiSkillAnalysisOccurrence

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb

Overview

AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AiSkillAnalysisOccurrence

Returns a new instance of AiSkillAnalysisOccurrence.



39
40
41
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 39

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

Instance Attribute Details

#findingsArray<Google::Apis::OndemandscanningV1beta1::Finding>

Findings produced by the analysis. Corresponds to the JSON property findings



32
33
34
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 32

def findings
  @findings
end

#skill_nameString

Name of the skill that produced this analysis. Corresponds to the JSON property skillName

Returns:

  • (String)


37
38
39
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 37

def skill_name
  @skill_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



44
45
46
47
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 44

def update!(**args)
  @findings = args[:findings] if args.key?(:findings)
  @skill_name = args[:skill_name] if args.key?(:skill_name)
end