Class: Google::Apis::OndemandscanningV1::AiSkillAnalysisOccurrence

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/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.



49
50
51
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 49

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

Instance Attribute Details

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

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



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

def findings
  @findings
end

#max_severityString

Maximum severity found among findings. Per scanner verdict details. Corresponds to the JSON property maxSeverity

Returns:

  • (String)


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

def max_severity
  @max_severity
end

#per_scanner_verdictGoogle::Apis::OndemandscanningV1::PerScannerVerdict

Per scanner verdict. Corresponds to the JSON property perScannerVerdict



42
43
44
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 42

def per_scanner_verdict
  @per_scanner_verdict
end

#skill_nameString

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

Returns:

  • (String)


47
48
49
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 47

def skill_name
  @skill_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



54
55
56
57
58
59
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 54

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