RecoveryBackupJobBackupJobStatus

The Job.BackupJobStatus structure represents the status of a backup/restore job.


Properties

string
id Required

TimeStamp based ID.


messages Required

List of messages.


integer as int64
progress Required

Progress of the job in percentage.


string as date-time
start_time Required

Time when the backup was started.


state Required

The Job.BackupRestoreProcessState enumerated type defines the possible states of a backup/restore process.
FAILED : Backup/Restore job failed.
INPROGRESS : Backup/Restore job is in progress.
NONE : Backup/Restore job is not started.
SUCCEEDED : Backup/Restore job completed successfully.

Possible values are: FAILEDINPROGRESSNONESUCCEEDED


string as date-time
end_time Optional

Time when the backup was finished. If unset end time is None until backup is finished.

JSON Example

{
	"id": "string",
	"messages": [
		{
			"args": [
				"string"
			],
			"default_message": "string",
			"id": "string"
		}
	],
	"progress": 0,
	"start_time": "string",
	"state": "FAILED"
}

Feedback

Was this page helpful?