Class: Azure::ARM::SQL::Models::TransparentDataEncryption
- Inherits:
-
SubResource
- Object
- MsRestAzure::SubResource
- SubResource
- Azure::ARM::SQL::Models::TransparentDataEncryption
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_sql/models/transparent_data_encryption.rb
Overview
Represents a database transparent data encryption configuration.
Instance Attribute Summary collapse
-
#status ⇒ TransparentDataEncryptionStatus
transparent data encryption.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TransparentDataEncryption class as Ruby Hash.
Instance Attribute Details
#status ⇒ TransparentDataEncryptionStatus
transparent data encryption. Possible values include: ‘Enabled’, ‘Disabled’
19 20 21 |
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption.rb', line 19 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for TransparentDataEncryption class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/generated/azure_mgmt_sql/models/transparent_data_encryption.rb', line 26 def self.mapper() { required: false, serialized_name: 'TransparentDataEncryption', type: { name: 'Composite', class_name: 'TransparentDataEncryption', model_properties: { name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, status: { required: false, serialized_name: 'properties.status', type: { name: 'Enum', module: 'TransparentDataEncryptionStatus' } } } } } end |