class Azure::Storage::Mgmt::V2021_01_01::Models::EncryptionScopeKeyVaultProperties
The key vault properties for the encryption scope. This is a required field if encryption scope 'source' attribute is set to 'Microsoft.KeyVault'.
Attributes
current_versioned_key_identifier[RW]
@return [String] The object identifier of the current versioned Key Vault Key in use.
key_uri[RW]
@return [String] The object identifier for a key vault key object. When applied, the encryption scope will use the key referenced by the identifier to enable customer-managed key support on this encryption scope.
last_key_rotation_timestamp[RW]
@return [DateTime] Timestamp of last rotation of the Key Vault Key.
Private Class Methods
mapper()
click to toggle source
Mapper for EncryptionScopeKeyVaultProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2021-01-01/generated/azure_mgmt_storage/models/encryption_scope_key_vault_properties.rb, line 35 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' } }, current_versioned_key_identifier: { client_side_validation: true, required: false, read_only: true, serialized_name: 'currentVersionedKeyIdentifier', type: { name: 'String' } }, last_key_rotation_timestamp: { client_side_validation: true, required: false, read_only: true, serialized_name: 'lastKeyRotationTimestamp', type: { name: 'DateTime' } } } } } end