class Google::Apis::SecuritycenterV1beta1::ListFindingsResponse

Response message for listing findings.

Attributes

findings[RW]

Findings matching the list request. Corresponds to the JSON property `findings` @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1beta1Finding>]

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_v1beta1/classes.rb, line 1590
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_v1beta1/classes.rb, line 1595
def update!(**args)
  @findings = args[:findings] if args.key?(:findings)
  @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