class Google::Apis::SecuritycenterV1beta1::GroupFindingsResponse

Response message for group by findings.

Attributes

group_by_results[RW]

Group results. There exists an element for each existing unique combination of property/values. The element contains a count for the number of times those specific property/values appear. Corresponds to the JSON property `groupByResults` @return [Array<Google::Apis::SecuritycenterV1beta1::GroupResult>]

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 groupBy request. Corresponds to the JSON property `readTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 1433
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 1438
def update!(**args)
  @group_by_results = args[:group_by_results] if args.key?(:group_by_results)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @read_time = args[:read_time] if args.key?(:read_time)
end