Module Values.ConflictExceptionSource

The request could not be completed due to a conflict with the current state of the target resource.

Sourcetype nonrec t = {
  1. message : LargeBoundedString.t option;
  2. code : LargeBoundedString.t option;
  3. resourceId : LargeBoundedString.t option;
    (*

    A conflict occurred when prompting for the Resource ID.

    *)
  4. resourceType : LargeBoundedString.t option;
    (*

    A conflict occurred when prompting for resource type.

    *)
  5. errors : ConflictExceptionErrors.t option;
    (*

    Conflict Exception specific errors.

    *)
}
Sourceval make : ?message:??? -> ?code:??? -> ?resourceId:??? -> ?resourceType:??? -> ?errors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of LargeBoundedString.t ]) list ] list | `String of LargeBoundedString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t