class Azure::KeyVault::V7_0_preview::Models::SasDefinitionAttributes
The SAS definition management attributes.
Attributes
created[RW]
@return Creation time in UTC.
enabled[RW]
@return [Boolean] the enabled state of the object.
recovery_level[RW]
@return [DeletionRecoveryLevel] Reflects the deletion recovery level currently in effect for SAS definitions in the current vault. If it contains 'Purgeable' the SAS definition can be permanently deleted by a privileged user; otherwise, only the system can purge the SAS definition, at the end of the retention interval. Possible values include: 'Purgeable', 'Recoverable+Purgeable', 'Recoverable', 'Recoverable+ProtectedSubscription'
updated[RW]
@return Last updated time in UTC.
Public Class Methods
mapper()
click to toggle source
Mapper for SasDefinitionAttributes
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.0-preview/generated/azure_key_vault/models/sas_definition_attributes.rb, line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SasDefinitionAttributes', type: { name: 'Composite', class_name: 'SasDefinitionAttributes', model_properties: { enabled: { client_side_validation: true, required: false, serialized_name: 'enabled', type: { name: 'Boolean' } }, created: { client_side_validation: true, required: false, read_only: true, serialized_name: 'created', type: { name: 'UnixTime' } }, updated: { client_side_validation: true, required: false, read_only: true, serialized_name: 'updated', type: { name: 'UnixTime' } }, recovery_level: { client_side_validation: true, required: false, read_only: true, serialized_name: 'recoveryLevel', type: { name: 'String' } } } } } end