Class: Google::Apis::VaultV1::CorpusQuery
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::CorpusQuery
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vault_v1/classes.rb,
lib/google/apis/vault_v1/representations.rb,
lib/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.
-
#voice_query ⇒ Google::Apis::VaultV1::HeldVoiceQuery
Query options for Voice holds.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CorpusQuery
constructor
A new instance of CorpusQuery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CorpusQuery
Returns a new instance of CorpusQuery.
351 352 353 |
# File 'lib/google/apis/vault_v1/classes.rb', line 351 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
329 330 331 |
# File 'lib/google/apis/vault_v1/classes.rb', line 329 def drive_query @drive_query end |
#groups_query ⇒ Google::Apis::VaultV1::HeldGroupsQuery
Query options for group holds.
Corresponds to the JSON property groupsQuery
334 335 336 |
# File 'lib/google/apis/vault_v1/classes.rb', line 334 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
339 340 341 |
# File 'lib/google/apis/vault_v1/classes.rb', line 339 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
344 345 346 |
# File 'lib/google/apis/vault_v1/classes.rb', line 344 def mail_query @mail_query end |
#voice_query ⇒ Google::Apis::VaultV1::HeldVoiceQuery
Query options for Voice holds.
Corresponds to the JSON property voiceQuery
349 350 351 |
# File 'lib/google/apis/vault_v1/classes.rb', line 349 def voice_query @voice_query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
356 357 358 359 360 361 362 |
# File 'lib/google/apis/vault_v1/classes.rb', line 356 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) @voice_query = args[:voice_query] if args.key?(:voice_query) end |