Class: Azure::Storage::Mgmt::V2021_01_01::Models::Encryption
- Inherits:
-
Object
- Object
- Azure::Storage::Mgmt::V2021_01_01::Models::Encryption
- Includes:
- MsRestAzure
- Defined in:
- lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb
Overview
The encryption settings on the storage account.
Instance Attribute Summary collapse
-
#encryption_identity ⇒ EncryptionIdentity
encryption at rest.
-
#key_source ⇒ KeySource
values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault.
-
#key_vault_properties ⇒ KeyVaultProperties
Properties provided by key vault.
-
#require_infrastructure_encryption ⇒ Boolean
applies a secondary layer of encryption with platform managed keys for data at rest.
-
#services ⇒ EncryptionServices
List of services which support encryption.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Encryption class as Ruby Hash.
Instance Attribute Details
#encryption_identity ⇒ EncryptionIdentity
encryption at rest.
34 35 36 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb', line 34 def encryption_identity @encryption_identity end |
#key_source ⇒ KeySource
values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault. Possible values include: ‘Microsoft.Storage’, ‘Microsoft.Keyvault’. Default value: ‘Microsoft.Storage’ .
22 23 24 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb', line 22 def key_source @key_source end |
#key_vault_properties ⇒ KeyVaultProperties
Returns Properties provided by key vault.
30 31 32 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb', line 30 def key_vault_properties @key_vault_properties end |
#require_infrastructure_encryption ⇒ Boolean
applies a secondary layer of encryption with platform managed keys for data at rest.
27 28 29 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb', line 27 def require_infrastructure_encryption @require_infrastructure_encryption end |
#services ⇒ EncryptionServices
Returns List of services which support encryption.
16 17 18 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb', line 16 def services @services end |
Class Method Details
.mapper ⇒ Object
Mapper for Encryption class as Ruby Hash. This will be used for serialization/deserialization.
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 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/encryption.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Encryption', type: { name: 'Composite', class_name: 'Encryption', model_properties: { services: { client_side_validation: true, required: false, serialized_name: 'services', type: { name: 'Composite', class_name: 'EncryptionServices' } }, key_source: { client_side_validation: true, required: true, serialized_name: 'keySource', default_value: 'Microsoft.Storage', type: { name: 'String' } }, require_infrastructure_encryption: { client_side_validation: true, required: false, serialized_name: 'requireInfrastructureEncryption', type: { name: 'Boolean' } }, key_vault_properties: { client_side_validation: true, required: false, serialized_name: 'keyvaultproperties', type: { name: 'Composite', class_name: 'KeyVaultProperties' } }, encryption_identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'EncryptionIdentity' } } } } } end |