Package version:

The current status of an async operation.

interface OperationStatusResult {
    error?: ErrorDetail;
    id?: string;
    name?: string;
    properties?: {
        [propertyName: string]: string;
    };
    status: string;
}

Properties

error?: ErrorDetail

If present, details of the operation error. NOTE: This property will not be serialized. It can only be populated by the server.

id?: string

Fully qualified ID for the async operation.

name?: string

Name of the async operation.

properties?: {
    [propertyName: string]: string;
}

Additional information, if available.

status: string

Operation status.