Class: Google::Apis::VaultV1::MailExportOptions
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::MailExportOptions
- 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
Options for Gmail exports.
Instance Attribute Summary collapse
-
#export_format ⇒ String
The file format for exported messages.
-
#show_confidential_mode_content ⇒ Boolean
(also: #show_confidential_mode_content?)
To export confidential mode content, set to true.
-
#use_new_export ⇒ Boolean
(also: #use_new_export?)
To use the new export system, set to true.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MailExportOptions
constructor
A new instance of MailExportOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MailExportOptions
Returns a new instance of MailExportOptions.
1307 1308 1309 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1307 def initialize(**args) update!(**args) end |
Instance Attribute Details
#export_format ⇒ String
The file format for exported messages.
Corresponds to the JSON property exportFormat
1293 1294 1295 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1293 def export_format @export_format end |
#show_confidential_mode_content ⇒ Boolean Also known as: show_confidential_mode_content?
To export confidential mode content, set to true.
Corresponds to the JSON property showConfidentialModeContent
1298 1299 1300 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1298 def show_confidential_mode_content @show_confidential_mode_content end |
#use_new_export ⇒ Boolean Also known as: use_new_export?
To use the new export system, set to true.
Corresponds to the JSON property useNewExport
1304 1305 1306 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1304 def use_new_export @use_new_export end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1312 1313 1314 1315 1316 |
# File 'lib/google/apis/vault_v1/classes.rb', line 1312 def update!(**args) @export_format = args[:export_format] if args.key?(:export_format) @show_confidential_mode_content = args[:show_confidential_mode_content] if args.key?(:show_confidential_mode_content) @use_new_export = args[:use_new_export] if args.key?(:use_new_export) end |