Class: Google::Apis::OndemandscanningV1beta1::AiSkillAnalysisOccurrence
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::AiSkillAnalysisOccurrence
- 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
-
#findings ⇒ Array<Google::Apis::OndemandscanningV1beta1::Finding>
Findings produced by the analysis.
-
#skill_name ⇒ String
Name of the skill that produced this analysis.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AiSkillAnalysisOccurrence
constructor
A new instance of AiSkillAnalysisOccurrence.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#findings ⇒ Array<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_name ⇒ String
Name of the skill that produced this analysis.
Corresponds to the JSON property skillName
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 |