Class: Google::Apis::SecuritycenterV1::GroupFindingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::GroupFindingsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/securitycenter_v1/classes.rb,
generated/google/apis/securitycenter_v1/representations.rb,
generated/google/apis/securitycenter_v1/representations.rb
Overview
Response message for group by findings.
Instance Attribute Summary collapse
-
#group_by_results ⇒ Array<Google::Apis::SecuritycenterV1::GroupResult>
Group results.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results.
-
#read_time ⇒ String
Time used for executing the groupBy request.
-
#total_size ⇒ Fixnum
The total number of results matching the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GroupFindingsResponse
constructor
A new instance of GroupFindingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GroupFindingsResponse
Returns a new instance of GroupFindingsResponse
807 808 809 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 807 def initialize(**args) update!(**args) end |
Instance Attribute Details
#group_by_results ⇒ Array<Google::Apis::SecuritycenterV1::GroupResult>
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
789 790 791 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 789 def group_by_results @group_by_results end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results.
Corresponds to the JSON property nextPageToken
795 796 797 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 795 def next_page_token @next_page_token end |
#read_time ⇒ String
Time used for executing the groupBy request.
Corresponds to the JSON property readTime
800 801 802 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 800 def read_time @read_time end |
#total_size ⇒ Fixnum
The total number of results matching the query.
Corresponds to the JSON property totalSize
805 806 807 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 805 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
812 813 814 815 816 817 |
# File 'generated/google/apis/securitycenter_v1/classes.rb', line 812 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 |