OperationStatus Class

Definition

Operation status object. Operation refers to the asynchronous backend task including taking a snapshot and applying a snapshot.

public class OperationStatus
type OperationStatus = class
Public Class OperationStatus
Inheritance
OperationStatus

Constructors

OperationStatus()

Initializes a new instance of the OperationStatus class.

OperationStatus(OperationStatusType, DateTime, Nullable<DateTime>, Nullable<DateTime>, String, String)

Properties

CreatedTime

Gets or sets a combined UTC date and time string that describes the time when the operation (take or apply a snapshot) is requested. E.g. 2018-12-25T11:41:02.2331413Z.

FinishedTime
LastActionTime

Gets or sets a combined UTC date and time string that describes the last time the operation (take or apply a snapshot) is actively migrating data. The lastActionTime will keep increasing until the operation finishes. E.g. 2018-12-25T11:51:27.8705696Z.

Message

Gets or sets show failure message when operation fails (omitted when operation succeeds).

ResourceLocation

Gets or sets when the operation succeeds successfully, for snapshot taking operation the snapshot id will be included in this field, and for snapshot applying operation, the path to get the target object will be returned in this field.

Status

Gets or sets operation status: notstarted, running, succeeded, failed. If the operation is requested and waiting to perform, the status is notstarted. If the operation is ongoing in backend, the status is running. Status succeeded means the operation is completed successfully, specifically for snapshot taking operation, it illustrates the snapshot is well taken and ready to apply, and for snapshot applying operation, it presents the target object has finished creating by the snapshot and ready to be used. Status failed is often caused by editing the source object while taking the snapshot or editing the target object while applying the snapshot before completion, see the field "message" to check the failure reason. Possible values include: 'notstarted', 'running', 'succeeded', 'failed'

Methods

Validate()

Validate the object.

Applies to