Class: Azure::ARM::Storage::Models::Encryption
- Inherits:
-
Object
- Object
- Azure::ARM::Storage::Models::Encryption
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_storage/models/encryption.rb
Overview
The encryption settings on the storage account.
Instance Attribute Summary collapse
-
#key_source ⇒ KeySource
values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault.
-
#key_vault_properties ⇒ KeyVaultProperties
Properties provided by key vault.
-
#services ⇒ EncryptionServices
List of services which support encryption.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Encryption class as Ruby Hash.
Instance Attribute Details
#key_source ⇒ KeySource
values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault. Possible values include: ‘Microsoft.Storage’, ‘Microsoft.Keyvault’. Default value: ‘Microsoft.Storage’ .
23 24 25 |
# File 'lib/generated/azure_mgmt_storage/models/encryption.rb', line 23 def key_source @key_source end |
#key_vault_properties ⇒ KeyVaultProperties
Returns Properties provided by key vault.
26 27 28 |
# File 'lib/generated/azure_mgmt_storage/models/encryption.rb', line 26 def key_vault_properties @key_vault_properties end |
#services ⇒ EncryptionServices
Returns List of services which support encryption.
17 18 19 |
# File 'lib/generated/azure_mgmt_storage/models/encryption.rb', line 17 def services @services end |
Class Method Details
.mapper ⇒ Object
Mapper for Encryption class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_storage/models/encryption.rb', line 33 def self.mapper() { required: false, serialized_name: 'Encryption', type: { name: 'Composite', class_name: 'Encryption', model_properties: { services: { required: false, serialized_name: 'services', type: { name: 'Composite', class_name: 'EncryptionServices' } }, key_source: { required: true, serialized_name: 'keySource', default_value: 'Microsoft.Storage', type: { name: 'String' } }, key_vault_properties: { required: false, serialized_name: 'keyvaultproperties', type: { name: 'Composite', class_name: 'KeyVaultProperties' } } } } } end |