Module Values.InvalidLayerPartExceptionSource

The layer part size is not valid, or the first byte specified is not consecutive to the last byte of a previous layer part upload.

Sourcetype nonrec t = {
  1. registryId : RegistryId.t option;
    (*

    The registry ID associated with the exception.

    *)
  2. repositoryName : RepositoryName.t option;
    (*

    The repository name associated with the exception.

    *)
  3. uploadId : UploadId.t option;
    (*

    The upload ID associated with the exception.

    *)
  4. lastValidByteReceived : PartSize.t option;
    (*

    The last valid byte received from the layer part upload that is associated with the exception.

    *)
  5. message : ExceptionMessage.t option;
    (*

    The error message associated with the exception.

    *)
}
Sourceval make : ?registryId:??? -> ?repositoryName:??? -> ?uploadId:??? -> ?lastValidByteReceived:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PartSize.t | `String of RegistryId.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