Class: Google::Apis::VaultV1::ExportOptions
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::ExportOptions
- 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
-
#calendar_options ⇒ Google::Apis::VaultV1::CalendarExportOptions
The options for Calendar exports.
-
#drive_options ⇒ Google::Apis::VaultV1::DriveExportOptions
Options for Drive exports.
-
#groups_options ⇒ Google::Apis::VaultV1::GroupsExportOptions
Options for Groups exports.
-
#hangouts_chat_options ⇒ Google::Apis::VaultV1::HangoutsChatExportOptions
Options for Chat exports.
-
#mail_options ⇒ Google::Apis::VaultV1::MailExportOptions
Options for Gmail exports.
-
#region ⇒ String
The requested data region for the export.
-
#voice_options ⇒ Google::Apis::VaultV1::VoiceExportOptions
The options for Voice exports.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportOptions
constructor
A new instance of ExportOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExportOptions
Returns a new instance of ExportOptions.
737 738 739 |
# File 'lib/google/apis/vault_v1/classes.rb', line 737 def initialize(**args) update!(**args) end |
Instance Attribute Details
#calendar_options ⇒ Google::Apis::VaultV1::CalendarExportOptions
The options for Calendar exports.
Corresponds to the JSON property calendarOptions
705 706 707 |
# File 'lib/google/apis/vault_v1/classes.rb', line 705 def @calendar_options end |
#drive_options ⇒ Google::Apis::VaultV1::DriveExportOptions
Options for Drive exports.
Corresponds to the JSON property driveOptions
710 711 712 |
# File 'lib/google/apis/vault_v1/classes.rb', line 710 def @drive_options end |
#groups_options ⇒ Google::Apis::VaultV1::GroupsExportOptions
Options for Groups exports.
Corresponds to the JSON property groupsOptions
715 716 717 |
# File 'lib/google/apis/vault_v1/classes.rb', line 715 def @groups_options end |
#hangouts_chat_options ⇒ Google::Apis::VaultV1::HangoutsChatExportOptions
Options for Chat exports.
Corresponds to the JSON property hangoutsChatOptions
720 721 722 |
# File 'lib/google/apis/vault_v1/classes.rb', line 720 def @hangouts_chat_options end |
#mail_options ⇒ Google::Apis::VaultV1::MailExportOptions
Options for Gmail exports.
Corresponds to the JSON property mailOptions
725 726 727 |
# File 'lib/google/apis/vault_v1/classes.rb', line 725 def @mail_options end |
#region ⇒ String
The requested data region for the export.
Corresponds to the JSON property region
730 731 732 |
# File 'lib/google/apis/vault_v1/classes.rb', line 730 def region @region end |
#voice_options ⇒ Google::Apis::VaultV1::VoiceExportOptions
The options for Voice exports.
Corresponds to the JSON property voiceOptions
735 736 737 |
# File 'lib/google/apis/vault_v1/classes.rb', line 735 def @voice_options end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
742 743 744 745 746 747 748 749 750 |
# File 'lib/google/apis/vault_v1/classes.rb', line 742 def update!(**args) @calendar_options = args[:calendar_options] if args.key?(:calendar_options) @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 |