Package version:

The object that defines the structure of an Azure Data Factory error response.

interface CloudError {
    code: string;
    details?: CloudError[];
    message: string;
    target?: string;
}

Properties

code: string

Error code.

details?: CloudError[]

Array with additional error details.

message: string

Error message.

target?: string

Property name/path in request associated with error.