Class: Azure::ARM::DataLakeStore::Models::EncryptionConfig
- Inherits:
-
Object
- Object
- Azure::ARM::DataLakeStore::Models::EncryptionConfig
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_datalake_store/models/encryption_config.rb
Overview
The encryption configuration for the account.
Instance Attribute Summary collapse
-
#key_vault_meta_info ⇒ KeyVaultMetaInfo
user managed encryption keys.
-
#type ⇒ EncryptionConfigType
being used.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EncryptionConfig class as Ruby Hash.
Instance Attribute Details
#key_vault_meta_info ⇒ KeyVaultMetaInfo
user managed encryption keys.
24 25 26 |
# File 'lib/generated/azure_mgmt_datalake_store/models/encryption_config.rb', line 24 def end |
#type ⇒ EncryptionConfigType
being used. Currently the only supported types are ‘UserManaged’ and ‘ServiceManaged’. Possible values include: ‘UserManaged’, ‘ServiceManaged’
20 21 22 |
# File 'lib/generated/azure_mgmt_datalake_store/models/encryption_config.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for EncryptionConfig class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_datalake_store/models/encryption_config.rb', line 31 def self.mapper() { required: false, serialized_name: 'EncryptionConfig', type: { name: 'Composite', class_name: 'EncryptionConfig', model_properties: { type: { required: true, serialized_name: 'type', type: { name: 'Enum', module: 'EncryptionConfigType' } }, key_vault_meta_info: { required: false, serialized_name: 'keyVaultMetaInfo', type: { name: 'Composite', class_name: 'KeyVaultMetaInfo' } } } } } end |