Package version:

The current status of an async operation.

interface OperationStatusResult {
    endTime?: any;
    error?: ErrorDetail;
    id?: string;
    name?: string;
    operations?: {};
    percentComplete?: number;
    resourceId?: string;
    startTime?: any;
    status: string;
}

Properties

endTime?: any

The end time of the operation.

error?: ErrorDetail

If present, details of the operation error.

id?: string

Fully qualified ID for the async operation.

name?: string

Name of the async operation.

operations?: {}

The operations list.

percentComplete?: number

Percent of the operation that is complete.

resourceId?: string

Fully qualified ID of the resource against which the original async operation was started.

startTime?: any

The start time of the operation.

status: string

Operation status.