Class: Google::Apis::OsconfigV1::VulnerabilityReport
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::VulnerabilityReport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/google/apis/osconfig_v1/representations.rb
Overview
This API resource represents the vulnerability report for a specified Compute Engine virtual machine (VM) instance at a given point in time. For more information, see Vulnerability reports.
Instance Attribute Summary collapse
-
#name ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#vulnerabilities ⇒ Array<Google::Apis::OsconfigV1::VulnerabilityReportVulnerability>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VulnerabilityReport
constructor
A new instance of VulnerabilityReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VulnerabilityReport
Returns a new instance of VulnerabilityReport.
3443 3444 3445 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3443 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Output only. The vulnerabilityReport API resource name. Format: projects/
project_number/locations/location/instances/instance_id/
vulnerabilityReport
Corresponds to the JSON property name
3430 3431 3432 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3430 def name @name end |
#update_time ⇒ String
Output only. The timestamp for when the last vulnerability report was
generated for the VM.
Corresponds to the JSON property updateTime
3436 3437 3438 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3436 def update_time @update_time end |
#vulnerabilities ⇒ Array<Google::Apis::OsconfigV1::VulnerabilityReportVulnerability>
Output only. List of vulnerabilities affecting the VM.
Corresponds to the JSON property vulnerabilities
3441 3442 3443 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3441 def vulnerabilities @vulnerabilities end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3448 3449 3450 3451 3452 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3448 def update!(**args) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) @vulnerabilities = args[:vulnerabilities] if args.key?(:vulnerabilities) end |