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

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

The options for mail export.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MailExportOptions

Returns a new instance of MailExportOptions.



1266
1267
1268
# File 'generated/google/apis/vault_v1/classes.rb', line 1266

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

Instance Attribute Details

#export_formatString

The export file format. Corresponds to the JSON property exportFormat

Returns:

  • (String)


1258
1259
1260
# File 'generated/google/apis/vault_v1/classes.rb', line 1258

def export_format
  @export_format
end

#show_confidential_mode_contentBoolean Also known as: show_confidential_mode_content?

Set to true to export confidential mode content. Corresponds to the JSON property showConfidentialModeContent

Returns:

  • (Boolean)


1263
1264
1265
# File 'generated/google/apis/vault_v1/classes.rb', line 1263

def show_confidential_mode_content
  @show_confidential_mode_content
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1271
1272
1273
1274
# File 'generated/google/apis/vault_v1/classes.rb', line 1271

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)
end