Class: Google::Apis::SecuritycenterV1::GroupAssetsRequest
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::GroupAssetsRequest
- 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) ⇒ GroupAssetsRequest
constructor
A new instance of GroupAssetsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GroupAssetsRequest
Returns a new instance of GroupAssetsRequest.
10626 10627 10628 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10626 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compare_duration ⇒ String
Corresponds to the JSON property compareDuration
10599 10600 10601 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10599 def compare_duration @compare_duration end |
#filter ⇒ String
Corresponds to the JSON property filter
10604 10605 10606 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10604 def filter @filter end |
#group_by ⇒ String
Corresponds to the JSON property groupBy
10609 10610 10611 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10609 def group_by @group_by end |
#page_size ⇒ Fixnum
Corresponds to the JSON property pageSize
10614 10615 10616 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10614 def page_size @page_size end |
#page_token ⇒ String
Corresponds to the JSON property pageToken
10619 10620 10621 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10619 def page_token @page_token end |
#read_time ⇒ String
Corresponds to the JSON property readTime
10624 10625 10626 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10624 def read_time @read_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10631 10632 10633 10634 10635 10636 10637 10638 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10631 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 |