Class: Google::Apis::VaultV1::MailExportOptions

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

Options for Gmail exports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MailExportOptions

Returns a new instance of MailExportOptions.



1306
1307
1308
# File 'lib/google/apis/vault_v1/classes.rb', line 1306

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

Instance Attribute Details

#export_formatString

The file format for exported messages. Corresponds to the JSON property exportFormat

Returns:

  • (String)


1292
1293
1294
# File 'lib/google/apis/vault_v1/classes.rb', line 1292

def export_format
  @export_format
end

#show_confidential_mode_contentBoolean Also known as: show_confidential_mode_content?

To export confidential mode content, set to true. Corresponds to the JSON property showConfidentialModeContent

Returns:

  • (Boolean)


1297
1298
1299
# File 'lib/google/apis/vault_v1/classes.rb', line 1297

def show_confidential_mode_content
  @show_confidential_mode_content
end

#use_new_exportBoolean Also known as: use_new_export?

To use the new export system, set to true. Corresponds to the JSON property useNewExport

Returns:

  • (Boolean)


1303
1304
1305
# File 'lib/google/apis/vault_v1/classes.rb', line 1303

def use_new_export
  @use_new_export
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1311
1312
1313
1314
1315
# File 'lib/google/apis/vault_v1/classes.rb', line 1311

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