Class: Google::Apis::ContaineranalysisV1::Assessment
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1::Assessment
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1/classes.rb,
lib/google/apis/containeranalysis_v1/representations.rb,
lib/google/apis/containeranalysis_v1/representations.rb
Overview
Assessment provides all information that is related to a single vulnerability for this product.
Instance Attribute Summary collapse
-
#cve ⇒ String
Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.
-
#impacts ⇒ Array<String>
Contains information about the impact of this vulnerability, this will change with time.
-
#justification ⇒ Google::Apis::ContaineranalysisV1::Justification
Justification provides the justification when the state of the assessment if NOT_AFFECTED.
-
#long_description ⇒ String
A detailed description of this Vex.
-
#related_uris ⇒ Array<Google::Apis::ContaineranalysisV1::RelatedUrl>
Holds a list of references associated with this vulnerability item and assessment.
-
#remediations ⇒ Array<Google::Apis::ContaineranalysisV1::Remediation>
Specifies details on how to handle (and presumably, fix) a vulnerability.
-
#short_description ⇒ String
A one sentence description of this Vex.
-
#state ⇒ String
Provides the state of this Vulnerability assessment.
-
#vulnerability_id ⇒ String
The vulnerability identifier for this Assessment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Assessment
constructor
A new instance of Assessment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Assessment
Returns a new instance of Assessment.
165 166 167 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cve ⇒ String
Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking
number for the vulnerability. Deprecated: Use vulnerability_id instead to
denote CVEs.
Corresponds to the JSON property cve
117 118 119 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 117 def cve @cve end |
#impacts ⇒ Array<String>
Contains information about the impact of this vulnerability, this will change
with time.
Corresponds to the JSON property impacts
123 124 125 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 123 def impacts @impacts end |
#justification ⇒ Google::Apis::ContaineranalysisV1::Justification
Justification provides the justification when the state of the assessment if
NOT_AFFECTED.
Corresponds to the JSON property justification
129 130 131 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 129 def justification @justification end |
#long_description ⇒ String
A detailed description of this Vex.
Corresponds to the JSON property longDescription
134 135 136 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 134 def long_description @long_description end |
#related_uris ⇒ Array<Google::Apis::ContaineranalysisV1::RelatedUrl>
Holds a list of references associated with this vulnerability item and
assessment. These uris have additional information about the vulnerability and
the assessment itself. E.g. Link to a document which details how this
assessment concluded the state of this vulnerability.
Corresponds to the JSON property relatedUris
142 143 144 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 142 def @related_uris end |
#remediations ⇒ Array<Google::Apis::ContaineranalysisV1::Remediation>
Specifies details on how to handle (and presumably, fix) a vulnerability.
Corresponds to the JSON property remediations
147 148 149 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 147 def remediations @remediations end |
#short_description ⇒ String
A one sentence description of this Vex.
Corresponds to the JSON property shortDescription
152 153 154 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 152 def short_description @short_description end |
#state ⇒ String
Provides the state of this Vulnerability assessment.
Corresponds to the JSON property state
157 158 159 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 157 def state @state end |
#vulnerability_id ⇒ String
The vulnerability identifier for this Assessment. Will hold one of common
identifiers e.g. CVE, GHSA etc.
Corresponds to the JSON property vulnerabilityId
163 164 165 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 163 def vulnerability_id @vulnerability_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 170 def update!(**args) @cve = args[:cve] if args.key?(:cve) @impacts = args[:impacts] if args.key?(:impacts) @justification = args[:justification] if args.key?(:justification) @long_description = args[:long_description] if args.key?(:long_description) @related_uris = args[:related_uris] if args.key?(:related_uris) @remediations = args[:remediations] if args.key?(:remediations) @short_description = args[:short_description] if args.key?(:short_description) @state = args[:state] if args.key?(:state) @vulnerability_id = args[:vulnerability_id] if args.key?(:vulnerability_id) end |