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.



794
795
796
# File 'lib/google/apis/vault_v1/classes.rb', line 794

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

Instance Attribute Details

#calendar_optionsGoogle::Apis::VaultV1::CalendarExportOptions

The options for Calendar exports. Corresponds to the JSON property calendarOptions



757
758
759
# File 'lib/google/apis/vault_v1/classes.rb', line 757

def calendar_options
  @calendar_options
end

#drive_optionsGoogle::Apis::VaultV1::DriveExportOptions

Options for Drive exports. Corresponds to the JSON property driveOptions



762
763
764
# File 'lib/google/apis/vault_v1/classes.rb', line 762

def drive_options
  @drive_options
end

#gemini_optionsGoogle::Apis::VaultV1::GeminiExportOptions

The options for Gemini exports. Corresponds to the JSON property geminiOptions



767
768
769
# File 'lib/google/apis/vault_v1/classes.rb', line 767

def gemini_options
  @gemini_options
end

#groups_optionsGoogle::Apis::VaultV1::GroupsExportOptions

Options for Groups exports. Corresponds to the JSON property groupsOptions



772
773
774
# File 'lib/google/apis/vault_v1/classes.rb', line 772

def groups_options
  @groups_options
end

#hangouts_chat_optionsGoogle::Apis::VaultV1::HangoutsChatExportOptions

Options for Chat exports. Corresponds to the JSON property hangoutsChatOptions



777
778
779
# File 'lib/google/apis/vault_v1/classes.rb', line 777

def hangouts_chat_options
  @hangouts_chat_options
end

#mail_optionsGoogle::Apis::VaultV1::MailExportOptions

Options for Gmail exports. Corresponds to the JSON property mailOptions



782
783
784
# File 'lib/google/apis/vault_v1/classes.rb', line 782

def mail_options
  @mail_options
end

#regionString

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

Returns:

  • (String)


787
788
789
# File 'lib/google/apis/vault_v1/classes.rb', line 787

def region
  @region
end

#voice_optionsGoogle::Apis::VaultV1::VoiceExportOptions

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



792
793
794
# File 'lib/google/apis/vault_v1/classes.rb', line 792

def voice_options
  @voice_options
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



799
800
801
802
803
804
805
806
807
808
# File 'lib/google/apis/vault_v1/classes.rb', line 799

def update!(**args)
  @calendar_options = args[:calendar_options] if args.key?(:calendar_options)
  @drive_options = args[:drive_options] if args.key?(:drive_options)
  @gemini_options = args[:gemini_options] if args.key?(:gemini_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