class Google::Apis::SecuritycenterV1::GroupAssetsResponse
Response message for grouping by assets.
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::SecuritycenterV1::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]
total_size[RW]
The total number of results 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 1246 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 1251 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) @total_size = args[:total_size] if args.key?(:total_size) end