Class: Google::Apis::SecuritycenterV1::GroupFindingsRequest
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::GroupFindingsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Instance Attribute Summary collapse
-
#compare_duration ⇒ String
Corresponds to the JSON property
compareDuration. -
#filter ⇒ String
Corresponds to the JSON property
filter. -
#group_by ⇒ String
Corresponds to the JSON property
groupBy. -
#page_size ⇒ Fixnum
Corresponds to the JSON property
pageSize. -
#page_token ⇒ String
Corresponds to the JSON property
pageToken. -
#read_time ⇒ String
Corresponds to the JSON property
readTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GroupFindingsRequest
constructor
A new instance of GroupFindingsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GroupFindingsRequest
Returns a new instance of GroupFindingsRequest.
10421 10422 10423 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10421 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compare_duration ⇒ String
Corresponds to the JSON property compareDuration
10394 10395 10396 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10394 def compare_duration @compare_duration end |
#filter ⇒ String
Corresponds to the JSON property filter
10399 10400 10401 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10399 def filter @filter end |
#group_by ⇒ String
Corresponds to the JSON property groupBy
10404 10405 10406 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10404 def group_by @group_by end |
#page_size ⇒ Fixnum
Corresponds to the JSON property pageSize
10409 10410 10411 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10409 def page_size @page_size end |
#page_token ⇒ String
Corresponds to the JSON property pageToken
10414 10415 10416 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10414 def page_token @page_token end |
#read_time ⇒ String
Corresponds to the JSON property readTime
10419 10420 10421 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10419 def read_time @read_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10426 10427 10428 10429 10430 10431 10432 10433 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10426 def update!(**args) @compare_duration = args[:compare_duration] if args.key?(:compare_duration) @filter = args[:filter] if args.key?(:filter) @group_by = args[:group_by] if args.key?(:group_by) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) @read_time = args[:read_time] if args.key?(:read_time) end |