Class: Google::Apis::VaultV1::ExportOptions

Inherits:
Object
  • Object
show all
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

Additional options for exports

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExportOptions

Returns a new instance of ExportOptions.



643
644
645
# File 'lib/google/apis/vault_v1/classes.rb', line 643

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#drive_optionsGoogle::Apis::VaultV1::DriveExportOptions

Options for Drive exports. Corresponds to the JSON property driveOptions



616
617
618
# File 'lib/google/apis/vault_v1/classes.rb', line 616

def drive_options
  @drive_options
end

#groups_optionsGoogle::Apis::VaultV1::GroupsExportOptions

Options for Groups exports. Corresponds to the JSON property groupsOptions



621
622
623
# File 'lib/google/apis/vault_v1/classes.rb', line 621

def groups_options
  @groups_options
end

#hangouts_chat_optionsGoogle::Apis::VaultV1::HangoutsChatExportOptions

Options for Chat exports. Corresponds to the JSON property hangoutsChatOptions



626
627
628
# File 'lib/google/apis/vault_v1/classes.rb', line 626

def hangouts_chat_options
  @hangouts_chat_options
end

#mail_optionsGoogle::Apis::VaultV1::MailExportOptions

Options for Gmail exports. Corresponds to the JSON property mailOptions



631
632
633
# File 'lib/google/apis/vault_v1/classes.rb', line 631

def mail_options
  @mail_options
end

#regionString

The requested data region for the export. Corresponds to the JSON property region

Returns:

  • (String)


636
637
638
# File 'lib/google/apis/vault_v1/classes.rb', line 636

def region
  @region
end

#voice_optionsGoogle::Apis::VaultV1::VoiceExportOptions

The options for Voice exports. Corresponds to the JSON property voiceOptions



641
642
643
# File 'lib/google/apis/vault_v1/classes.rb', line 641

def voice_options
  @voice_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



648
649
650
651
652
653
654
655
# File 'lib/google/apis/vault_v1/classes.rb', line 648

def update!(**args)
  @drive_options = args[:drive_options] if args.key?(:drive_options)
  @groups_options = args[:groups_options] if args.key?(:groups_options)
  @hangouts_chat_options = args[:hangouts_chat_options] if args.key?(:hangouts_chat_options)
  @mail_options = args[:mail_options] if args.key?(:mail_options)
  @region = args[:region] if args.key?(:region)
  @voice_options = args[:voice_options] if args.key?(:voice_options)
end