class Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
Represents a database transparent data encryption configuration.
Attributes
location[RW]
@return [String] Resource
location.
status[RW]
@return [TransparentDataEncryptionStatus] The status of the database transparent data encryption. Possible values include: 'Enabled', 'Disabled'
Private Class Methods
mapper()
click to toggle source
Mapper for TransparentDataEncryption
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TransparentDataEncryption', type: { name: 'Composite', class_name: 'TransparentDataEncryption', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, read_only: true, serialized_name: 'location', type: { name: 'String' } }, status: { client_side_validation: true, required: false, serialized_name: 'properties.status', type: { name: 'Enum', module: 'TransparentDataEncryptionStatus' } } } } } end