Class: Google::Apis::VaultV1::CorpusQuery
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::CorpusQuery
- 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
Corpus specific queries.
Instance Attribute Summary collapse
-
#drive_query ⇒ Google::Apis::VaultV1::HeldDriveQuery
Query options for Drive holds.
-
#groups_query ⇒ Google::Apis::VaultV1::HeldGroupsQuery
Query options for group holds.
-
#hangouts_chat_query ⇒ Google::Apis::VaultV1::HeldHangoutsChatQuery
Query options for hangouts chat holds.
-
#mail_query ⇒ Google::Apis::VaultV1::HeldMailQuery
Query options for mail holds.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CorpusQuery
constructor
A new instance of CorpusQuery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CorpusQuery
Returns a new instance of CorpusQuery
309 310 311 |
# File 'generated/google/apis/vault_v1/classes.rb', line 309 def initialize(**args) update!(**args) end |
Instance Attribute Details
#drive_query ⇒ Google::Apis::VaultV1::HeldDriveQuery
Query options for Drive holds.
Corresponds to the JSON property driveQuery
292 293 294 |
# File 'generated/google/apis/vault_v1/classes.rb', line 292 def drive_query @drive_query end |
#groups_query ⇒ Google::Apis::VaultV1::HeldGroupsQuery
Query options for group holds.
Corresponds to the JSON property groupsQuery
297 298 299 |
# File 'generated/google/apis/vault_v1/classes.rb', line 297 def groups_query @groups_query end |
#hangouts_chat_query ⇒ Google::Apis::VaultV1::HeldHangoutsChatQuery
Query options for hangouts chat holds.
Corresponds to the JSON property hangoutsChatQuery
302 303 304 |
# File 'generated/google/apis/vault_v1/classes.rb', line 302 def hangouts_chat_query @hangouts_chat_query end |
#mail_query ⇒ Google::Apis::VaultV1::HeldMailQuery
Query options for mail holds.
Corresponds to the JSON property mailQuery
307 308 309 |
# File 'generated/google/apis/vault_v1/classes.rb', line 307 def mail_query @mail_query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
314 315 316 317 318 319 |
# File 'generated/google/apis/vault_v1/classes.rb', line 314 def update!(**args) @drive_query = args[:drive_query] if args.key?(:drive_query) @groups_query = args[:groups_query] if args.key?(:groups_query) @hangouts_chat_query = args[:hangouts_chat_query] if args.key?(:hangouts_chat_query) @mail_query = args[:mail_query] if args.key?(:mail_query) end |