class Google::Apis::OndemandscanningV1beta1::ListVulnerabilitiesResponse
ListVulnerabilitiesResponse
contains a single page of vulnerabilities resulting from a scan.
Attributes
next_page_token[RW]
A page token that can be used in a subsequent call to ListVulnerabilities to continue retrieving results. Corresponds to the JSON property `nextPageToken` @return [String]
occurrences[RW]
The list of Vulnerability Occurrences resulting from a scan. Corresponds to the JSON property `occurrences` @return [Array<Google::Apis::OndemandscanningV1beta1::Occurrence>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/ondemandscanning_v1beta1/classes.rb, line 1163 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/ondemandscanning_v1beta1/classes.rb, line 1168 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @occurrences = args[:occurrences] if args.key?(:occurrences) end