Class: Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionListResult
- Inherits:
-
Object
- Object
- Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionListResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_list_result.rb
Overview
Represents the response to a list transparent data encryption configurations request.
Instance Attribute Summary collapse
-
#value ⇒ Array<TransparentDataEncryption>
encryption configurations.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TransparentDataEncryptionListResult class as Ruby Hash.
Instance Attribute Details
#value ⇒ Array<TransparentDataEncryption>
encryption configurations.
18 19 20 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_list_result.rb', line 18 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for TransparentDataEncryptionListResult class as Ruby Hash. This will be used for serialization/deserialization.
25 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 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/transparent_data_encryption_list_result.rb', line 25 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TransparentDataEncryptionListResult', type: { name: 'Composite', class_name: 'TransparentDataEncryptionListResult', model_properties: { value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'TransparentDataEncryptionElementType', type: { name: 'Composite', class_name: 'TransparentDataEncryption' } } } } } } } end |