class Azure::KeyVault::V7_2_preview::Models::FullBackupOperation
Full backup operation
Attributes
azure_storage_blob_container_uri[RW]
@return [String] The Azure
blob storage container Uri which contains the full backup
end_time[RW]
@return The end time of the backup operation in UTC
error[RW]
@return [Error] Error
encountered, if any, during the full backup operation.
job_id[RW]
@return [String] Identifier for the full backup operation.
start_time[RW]
@return The start time of the backup operation in UTC
status[RW]
@return [String] Status of the backup operation.
status_details[RW]
@return [String] The status details of backup operation.
Private Class Methods
mapper()
click to toggle source
Mapper for FullBackupOperation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb, line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FullBackupOperation', type: { name: 'Composite', class_name: 'FullBackupOperation', model_properties: { status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'String' } }, status_details: { client_side_validation: true, required: false, serialized_name: 'statusDetails', type: { name: 'String' } }, error: { client_side_validation: true, required: false, serialized_name: 'error', type: { name: 'Composite', class_name: 'Error' } }, start_time: { client_side_validation: true, required: false, serialized_name: 'startTime', type: { name: 'UnixTime' } }, end_time: { client_side_validation: true, required: false, serialized_name: 'endTime', type: { name: 'UnixTime' } }, job_id: { client_side_validation: true, required: false, serialized_name: 'jobId', type: { name: 'String' } }, azure_storage_blob_container_uri: { client_side_validation: true, required: false, serialized_name: 'azureStorageBlobContainerUri', type: { name: 'String' } } } } } end