class Google::Apis::OsconfigV1::ListVulnerabilityReportsResponse
A response message for listing vulnerability reports for all VM instances in the specified location.
Attributes
next_page_token[RW]
The pagination token to retrieve the next page of vulnerabilityReports object. Corresponds to the JSON property `nextPageToken` @return [String]
vulnerability_reports[RW]
List of vulnerabilityReport objects. Corresponds to the JSON property `vulnerabilityReports` @return [Array<Google::Apis::OsconfigV1::VulnerabilityReport>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1/classes.rb, line 933 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/osconfig_v1/classes.rb, line 938 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @vulnerability_reports = args[:vulnerability_reports] if args.key?(:vulnerability_reports) end