class Google::Apis::SecuritycenterV1::ListFindingsResponse
Response message for listing findings.
Attributes
list_findings_results[RW]
Findings matching the list request. Corresponds to the JSON property `listFindingsResults` @return [Array<Google::Apis::SecuritycenterV1::ListFindingsResult>]
next_page_token[RW]
Token to retrieve the next page of results, or empty if there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]
read_time[RW]
Time used for executing the list request. Corresponds to the JSON property `readTime` @return [String]
total_size[RW]
The total number of findings matching the query. Corresponds to the JSON property `totalSize` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/securitycenter_v1/classes.rb, line 1567 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/securitycenter_v1/classes.rb, line 1572 def update!(**args) @list_findings_results = args[:list_findings_results] if args.key?(:list_findings_results) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @read_time = args[:read_time] if args.key?(:read_time) @total_size = args[:total_size] if args.key?(:total_size) end