Class: Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
- Inherits:
-
ProxyResource
- Object
- Resource
- ProxyResource
- Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption.rb
Overview
Represents a database transparent data encryption configuration.
Instance Attribute Summary collapse
-
#location ⇒ String
Resource location.
-
#status ⇒ TransparentDataEncryptionStatus
transparent data encryption.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TransparentDataEncryption class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#location ⇒ String
Returns Resource location.
16 17 18 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption.rb', line 16 def location @location end |
#status ⇒ TransparentDataEncryptionStatus
transparent data encryption. Possible values include: ‘Enabled’, ‘Disabled’
21 22 23 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption.rb', line 21 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for TransparentDataEncryption class as Ruby Hash. This will be used for serialization/deserialization.
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# 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 |