Class: Google::Apis::VaultV1::HeldGroupsQuery
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::HeldGroupsQuery
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/google/apis/vault_v1/representations.rb
Overview
Query options for group holds.
Instance Attribute Summary collapse
-
#end_time ⇒ String
The end time range for the search query.
-
#start_time ⇒ String
The start time range for the search query.
-
#terms ⇒ String
The search terms for the hold.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HeldGroupsQuery
constructor
A new instance of HeldGroupsQuery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HeldGroupsQuery
Returns a new instance of HeldGroupsQuery.
890 891 892 |
# File 'generated/google/apis/vault_v1/classes.rb', line 890 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
The end time range for the search query. These timestamps are in GMT and
rounded down to the start of the given date.
Corresponds to the JSON property endTime
877 878 879 |
# File 'generated/google/apis/vault_v1/classes.rb', line 877 def end_time @end_time end |
#start_time ⇒ String
The start time range for the search query. These timestamps are in GMT and
rounded down to the start of the given date.
Corresponds to the JSON property startTime
883 884 885 |
# File 'generated/google/apis/vault_v1/classes.rb', line 883 def start_time @start_time end |
#terms ⇒ String
The search terms for the hold.
Corresponds to the JSON property terms
888 889 890 |
# File 'generated/google/apis/vault_v1/classes.rb', line 888 def terms @terms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
895 896 897 898 899 |
# File 'generated/google/apis/vault_v1/classes.rb', line 895 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) @terms = args[:terms] if args.key?(:terms) end |