Class: Google::Apis::VaultV1::MailExportOptions
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::MailExportOptions
- 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
-
#export_format ⇒ String
The export file format.
-
#show_confidential_mode_content ⇒ Boolean
(also: #show_confidential_mode_content?)
Set to true to export confidential mode content Corresponds to the JSON property
showConfidentialModeContent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MailExportOptions
constructor
A new instance of MailExportOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MailExportOptions
Returns a new instance of MailExportOptions
939 940 941 |
# File 'generated/google/apis/vault_v1/classes.rb', line 939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#export_format ⇒ String
The export file format.
Corresponds to the JSON property exportFormat
931 932 933 |
# File 'generated/google/apis/vault_v1/classes.rb', line 931 def export_format @export_format end |
#show_confidential_mode_content ⇒ Boolean Also known as: show_confidential_mode_content?
Set to true to export confidential mode content
Corresponds to the JSON property showConfidentialModeContent
936 937 938 |
# File 'generated/google/apis/vault_v1/classes.rb', line 936 def show_confidential_mode_content @show_confidential_mode_content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
944 945 946 947 |
# File 'generated/google/apis/vault_v1/classes.rb', line 944 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 |