Class: Azure::Storage::Mgmt::V2019_06_01::Models::EncryptionScopeKeyVaultProperties
- Inherits:
-
Object
- Object
- Azure::Storage::Mgmt::V2019_06_01::Models::EncryptionScopeKeyVaultProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01/generated/azure_mgmt_storage/models/encryption_scope_key_vault_properties.rb
Overview
The key vault properties for the encryption scope. This is a required field if encryption scope ‘source’ attribute is set to ‘Microsoft.KeyVault’.
Instance Attribute Summary collapse
-
#key_uri ⇒ String
applied, the encryption scope will use the key referenced by the identifier to enable customer-managed key support on this encryption scope.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EncryptionScopeKeyVaultProperties class as Ruby Hash.
Instance Attribute Details
#key_uri ⇒ String
applied, the encryption scope will use the key referenced by the identifier to enable customer-managed key support on this encryption scope.
21 22 23 |
# File 'lib/2019-06-01/generated/azure_mgmt_storage/models/encryption_scope_key_vault_properties.rb', line 21 def key_uri @key_uri end |
Class Method Details
.mapper ⇒ Object
Mapper for EncryptionScopeKeyVaultProperties class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/2019-06-01/generated/azure_mgmt_storage/models/encryption_scope_key_vault_properties.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EncryptionScopeKeyVaultProperties', type: { name: 'Composite', class_name: 'EncryptionScopeKeyVaultProperties', model_properties: { key_uri: { client_side_validation: true, required: false, serialized_name: 'keyUri', type: { name: 'String' } } } } } end |