Class: Azure::KeyVault::V7_2_preview::Models::FullBackupOperation
- Inherits:
-
Object
- Object
- Azure::KeyVault::V7_2_preview::Models::FullBackupOperation
- Includes:
- MsRestAzure
- Defined in:
- lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb
Overview
Full backup operation
Instance Attribute Summary collapse
-
#azure_storage_blob_container_uri ⇒ String
the full backup.
-
#end_time ⇒ Object
The end time of the backup operation in UTC.
-
#error ⇒ Error
operation.
-
#job_id ⇒ String
Identifier for the full backup operation.
-
#start_time ⇒ Object
The start time of the backup operation in UTC.
-
#status ⇒ String
Status of the backup operation.
-
#status_details ⇒ String
The status details of backup operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FullBackupOperation class as Ruby Hash.
Instance Attribute Details
#azure_storage_blob_container_uri ⇒ String
the full backup
36 37 38 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 36 def azure_storage_blob_container_uri @azure_storage_blob_container_uri end |
#end_time ⇒ Object
Returns The end time of the backup operation in UTC.
29 30 31 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 29 def end_time @end_time end |
#error ⇒ Error
operation.
23 24 25 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 23 def error @error end |
#job_id ⇒ String
Returns Identifier for the full backup operation.
32 33 34 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 32 def job_id @job_id end |
#start_time ⇒ Object
Returns The start time of the backup operation in UTC.
26 27 28 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 26 def start_time @start_time end |
#status ⇒ String
Returns Status of the backup operation.
16 17 18 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 16 def status @status end |
#status_details ⇒ String
Returns The status details of backup operation.
19 20 21 |
# File 'lib/7.2-preview/generated/azure_key_vault/models/full_backup_operation.rb', line 19 def status_details @status_details end |
Class Method Details
.mapper ⇒ Object
Mapper for FullBackupOperation class as Ruby Hash. This will be used for serialization/deserialization.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# 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 |