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

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

Export advanced options

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExportOptions

Returns a new instance of ExportOptions.



629
630
631
# File 'generated/google/apis/vault_v1/classes.rb', line 629

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

Instance Attribute Details

#drive_optionsGoogle::Apis::VaultV1::DriveExportOptions

The options for Drive export. Corresponds to the JSON property driveOptions



602
603
604
# File 'generated/google/apis/vault_v1/classes.rb', line 602

def drive_options
  @drive_options
end

#groups_optionsGoogle::Apis::VaultV1::GroupsExportOptions

The options for groups export. Corresponds to the JSON property groupsOptions



607
608
609
# File 'generated/google/apis/vault_v1/classes.rb', line 607

def groups_options
  @groups_options
end

#hangouts_chat_optionsGoogle::Apis::VaultV1::HangoutsChatExportOptions

The options for hangouts chat export. Corresponds to the JSON property hangoutsChatOptions



612
613
614
# File 'generated/google/apis/vault_v1/classes.rb', line 612

def hangouts_chat_options
  @hangouts_chat_options
end

#mail_optionsGoogle::Apis::VaultV1::MailExportOptions

The options for mail export. Corresponds to the JSON property mailOptions



617
618
619
# File 'generated/google/apis/vault_v1/classes.rb', line 617

def mail_options
  @mail_options
end

#regionString

The requested export location. Corresponds to the JSON property region

Returns:

  • (String)


622
623
624
# File 'generated/google/apis/vault_v1/classes.rb', line 622

def region
  @region
end

#voice_optionsGoogle::Apis::VaultV1::VoiceExportOptions

The options for voice export. Corresponds to the JSON property voiceOptions



627
628
629
# File 'generated/google/apis/vault_v1/classes.rb', line 627

def voice_options
  @voice_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



634
635
636
637
638
639
640
641
# File 'generated/google/apis/vault_v1/classes.rb', line 634

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