Returned when update actions could not be applied to the resource (for example, because a referenced resource does not exist). This would result in a 400 Bad Request response if the same update action was sent from a regular client.

interface ExtensionUpdateActionsFailedError {
    code: "ExtensionUpdateActionsFailed";
    extensionErrors: ExtensionError[];
    extensionExtraInfo?: any;
    localizedMessage?: LocalizedString;
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "ExtensionUpdateActionsFailed"
extensionErrors: ExtensionError[]

Additional errors related to the API Extension.

extensionExtraInfo?: any

Any information that should be returned to the API caller.

localizedMessage?: LocalizedString

User-defined localized description of the error.

message: string

"The extension returned update actions that could not be executed."

Generated using TypeDoc