Package version:

Interface ManagedIntegrationRuntimeError

Error definition for managed integration runtime.

interface ManagedIntegrationRuntimeError {
    code?: string;
    message?: string;
    parameters?: string[];
    time?: any;
    [property: string]: any;
}

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

code?: string

Error code. NOTE: This property will not be serialized. It can only be populated by the server.

message?: string

Error message. NOTE: This property will not be serialized. It can only be populated by the server.

parameters?: string[]

Managed integration runtime error parameters. NOTE: This property will not be serialized. It can only be populated by the server.

time?: any

The time when the error occurred. NOTE: This property will not be serialized. It can only be populated by the server.