The request conflicts with the current state of the involved resources. This error typically occurs when the request attempts to modify a resource that is out of date, that is, it has been modified by another client since the last time it was retrieved by the system attempting to update it. The client application should resolve the conflict (with or without involving the end-user) before retrying the request.

interface ConcurrentModificationError {
    code: "ConcurrentModification";
    conflictedResource?: any;
    currentVersion: number;
    message: string;
    specifiedVersion?: number;
}

Hierarchy (View Summary)

Properties

code: "ConcurrentModification"

An error identifier.

conflictedResource?: any

The resource in conflict.

currentVersion: number

The current version of the resource.

message: string

A plain language description of the cause of an error.

specifiedVersion?: number

The version specified in the failed request.