Class: Azure::Appconfiguration::Mgmt::V2019_11_01_preview::Models::EncryptionProperties
- Inherits:
-
Object
- Object
- Azure::Appconfiguration::Mgmt::V2019_11_01_preview::Models::EncryptionProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/encryption_properties.rb
Overview
The encryption settings for a configuration store.
Instance Attribute Summary collapse
-
#key_vault_properties ⇒ KeyVaultProperties
Key vault properties.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EncryptionProperties class as Ruby Hash.
Instance Attribute Details
#key_vault_properties ⇒ KeyVaultProperties
Returns Key vault properties.
16 17 18 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/encryption_properties.rb', line 16 def key_vault_properties @key_vault_properties end |
Class Method Details
.mapper ⇒ Object
Mapper for EncryptionProperties class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/2019-11-01-preview/generated/azure_mgmt_appconfiguration/models/encryption_properties.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EncryptionProperties', type: { name: 'Composite', class_name: 'EncryptionProperties', model_properties: { key_vault_properties: { client_side_validation: true, required: false, serialized_name: 'keyVaultProperties', type: { name: 'Composite', class_name: 'KeyVaultProperties' } } } } } end |