Description:"The manifest idenfied by `name` and `reference`. The contents can be used to identify and resolve resources required to run the specified image.",
Description:"The received manifest was invalid in some way, as described by the error codes. The client should resolve the issue and retry the request.",
Description:"The specified `name` or `reference` are unknown to the registry and the delete was unable to proceed. Clients can assume the manifest was already deleted if this response is returned.",
Description:"Retrieve the blob from the registry identified by `digest`. A `HEAD` request can also be issued to this endpoint to obtain resource information without receiving all data.",
Requests:[]RequestDescriptor{
{
Name:"Fetch Blob",
Headers:[]ParameterDescriptor{
hostHeader,
authHeader,
},
PathParameters:[]ParameterDescriptor{
nameParameterDescriptor,
digestPathParameter,
},
Successes:[]ResponseDescriptor{
{
Description:"The blob identified by `digest` is available. The blob content will be present in the body of the request.",
StatusCode:http.StatusOK,
Headers:[]ParameterDescriptor{
{
Name:"Content-Length",
Type:"integer",
Description:"The length of the requested blob content.",
Description:"This endpoint may also support RFC7233 compliant range requests. Support can be detected by issuing a HEAD request. If the header `Accept-Range: bytes` is returned, range requests can be used to fetch partial content.",
Headers:[]ParameterDescriptor{
hostHeader,
authHeader,
{
Name:"Range",
Type:"string",
Description:"HTTP Range header specifying blob chunk.",
Format:"bytes=<start>-<end>",
},
},
PathParameters:[]ParameterDescriptor{
nameParameterDescriptor,
digestPathParameter,
},
Successes:[]ResponseDescriptor{
{
Description:"The blob identified by `digest` is available. The specified chunk of blob content will be present in the body of the request.",
StatusCode:http.StatusPartialContent,
Headers:[]ParameterDescriptor{
{
Name:"Content-Length",
Type:"integer",
Description:"The length of the requested blob chunk.",
Format:"<length>",
},
{
Name:"Content-Range",
Type:"byte range",
Description:"Content range of blob chunk.",
Format:"bytes <start>-<end>/<size>",
},
},
Body:BodyDescriptor{
ContentType:"application/octet-stream",
Format:"<blob binary data>",
},
},
},
Failures:[]ResponseDescriptor{
{
Description:"There was a problem with the request that needs to be addressed by the client, such as an invalid `name` or `tag`.",
Description:"The range specification cannot be satisfied for the requested content. This can happen when the range is not formatted correctly or if the range is outside of the valid size of the content.",
Description:"Initiate a blob upload. This endpoint can be used to create resumable uploads or monolithic uploads.",
Methods:[]MethodDescriptor{
{
Method:"POST",
Description:"Initiate a resumable blob upload. If successful, an upload location will be provided to complete the upload. Optionally, if the `digest` parameter is present, the request body will be used to complete the upload in a single request.",
Requests:[]RequestDescriptor{
{
Name:"Initiate Monolithic Blob Upload",
Description:"Upload a blob identified by the `digest` parameter in single request. This upload will not be resumable unless a recoverable error is returned.",
Description:`Digest of uploaded blob. If present, the upload will be completed, in a single request, with contents of the request body as the resulting blob.`,
},
},
Body:BodyDescriptor{
ContentType:"application/octect-stream",
Format:"<binary data>",
},
Successes:[]ResponseDescriptor{
{
Description:"The blob has been created in the registry and is available at the provided location.",
Description:"Initiate a resumable blob upload with an empty request body.",
Headers:[]ParameterDescriptor{
hostHeader,
authHeader,
contentLengthZeroHeader,
},
PathParameters:[]ParameterDescriptor{
nameParameterDescriptor,
},
Successes:[]ResponseDescriptor{
{
Description:"The upload has been created. The `Location` header must be used to complete the upload. The response should be identical to a `GET` request on the contents of the returned `Location` header.",
StatusCode:http.StatusAccepted,
Headers:[]ParameterDescriptor{
contentLengthZeroHeader,
{
Name:"Location",
Type:"url",
Format:"/v2/<name>/blobs/uploads/<uuid>",
Description:"The location of the created upload. Clients should use the contents verbatim to complete the upload, adding parameters where required.",
},
{
Name:"Range",
Format:"0-0",
Description:"Range header indicating the progress of the upload. When starting an upload, it will return an empty range, since no content has been received.",
Description:"Interact with blob uploads. Clients should never assemble URLs for this endpoint and should only take it through the `Location` header on related API requests. The `Location` header and its parameters should be preserved by clients, using the latest value returned via upload related API calls.",
Methods:[]MethodDescriptor{
{
Method:"GET",
Description:"Retrieve status of upload identified by `uuid`. The primary purpose of this endpoint is to resolve the current status of a resumable upload.",
Requests:[]RequestDescriptor{
{
Description:"Retrieve the progress of the current upload, as reported by the `Range` header.",
Headers:[]ParameterDescriptor{
hostHeader,
authHeader,
},
PathParameters:[]ParameterDescriptor{
nameParameterDescriptor,
uuidParameterDescriptor,
},
Successes:[]ResponseDescriptor{
{
Name:"Upload Progress",
Description:"The upload is known and in progress. The last received offset is available in the `Range` header.",
StatusCode:http.StatusNoContent,
Headers:[]ParameterDescriptor{
{
Name:"Range",
Type:"header",
Format:"0-<offset>",
Description:"Range indicating the current progress of the upload.",
Description:"Upload a stream of data to upload without completing the upload.",
PathParameters:[]ParameterDescriptor{
nameParameterDescriptor,
uuidParameterDescriptor,
},
Headers:[]ParameterDescriptor{
hostHeader,
authHeader,
},
Body:BodyDescriptor{
ContentType:"application/octet-stream",
Format:"<binary data>",
},
Successes:[]ResponseDescriptor{
{
Name:"Data Accepted",
Description:"The stream of data has been accepted and the current progress is available in the range header. The updated upload location is available in the `Location` header.",
StatusCode:http.StatusNoContent,
Headers:[]ParameterDescriptor{
{
Name:"Location",
Type:"url",
Format:"/v2/<name>/blobs/uploads/<uuid>",
Description:"The location of the upload. Clients should assume this changes after each request. Clients should use the contents verbatim to complete the upload, adding parameters where required.",
},
{
Name:"Range",
Type:"header",
Format:"0-<offset>",
Description:"Range indicating the current progress of the upload.",
},
contentLengthZeroHeader,
dockerUploadUUIDHeader,
},
},
},
Failures:[]ResponseDescriptor{
{
Description:"There was an error processing the upload and it must be restarted.",
Format:"<start of range>-<end of range, inclusive>",
Required:true,
Description:"Range of bytes identifying the desired block of content represented by the body. Start must the end offset retrieved via status check plus one. Note that this is a non-standard use of the `Content-Range` header.",
},
{
Name:"Content-Length",
Type:"integer",
Format:"<length of chunk>",
Description:"Length of the chunk being uploaded, corresponding the length of the request body.",
},
},
Body:BodyDescriptor{
ContentType:"application/octet-stream",
Format:"<binary chunk>",
},
Successes:[]ResponseDescriptor{
{
Name:"Chunk Accepted",
Description:"The chunk of data has been accepted and the current progress is available in the range header. The updated upload location is available in the `Location` header.",
StatusCode:http.StatusNoContent,
Headers:[]ParameterDescriptor{
{
Name:"Location",
Type:"url",
Format:"/v2/<name>/blobs/uploads/<uuid>",
Description:"The location of the upload. Clients should assume this changes after each request. Clients should use the contents verbatim to complete the upload, adding parameters where required.",
},
{
Name:"Range",
Type:"header",
Format:"0-<offset>",
Description:"Range indicating the current progress of the upload.",
Description:"Complete the upload, providing all the data in the body, if necessary. A request without a body will just complete the upload with previously uploaded content.",
Format:"<start of range>-<end of range, inclusive>",
Description:"Range of bytes identifying the desired block of content represented by the body. Start must match the end of offset retrieved via status check. Note that this is a non-standard use of the `Content-Range` header.",
Description:"Cancel outstanding upload processes, releasing associated resources. If this is not called, the unfinished uploads will eventually timeout.",
Requests:[]RequestDescriptor{
{
Description:"Cancel the upload specified by `uuid`.",
PathParameters:[]ParameterDescriptor{
nameParameterDescriptor,
uuidParameterDescriptor,
},
Headers:[]ParameterDescriptor{
hostHeader,
authHeader,
contentLengthZeroHeader,
},
Successes:[]ResponseDescriptor{
{
Name:"Upload Deleted",
Description:"The upload has been successfully deleted.",
StatusCode:http.StatusNoContent,
Headers:[]ParameterDescriptor{
contentLengthZeroHeader,
},
},
},
Failures:[]ResponseDescriptor{
{
Description:"An error was encountered processing the delete. The client may ignore this error.",
Description:"List a set of available repositories in the local registry cluster. Does not provide any indication of what may be available upstream. Applications can only determine if a repository is available but not if it is not available.",
Methods:[]MethodDescriptor{
{
Method:"GET",
Description:"Retrieve a sorted, json list of repositories available in the registry.",
Requests:[]RequestDescriptor{
{
Name:"Catalog Fetch Complete",
Description:"Request an unabridged list of repositories available.",
Successes:[]ResponseDescriptor{
{
Description:"Returns the unabridged list of repositories as a json response.",
StatusCode:http.StatusOK,
Headers:[]ParameterDescriptor{
{
Name:"Content-Length",
Type:"integer",
Description:"Length of the JSON response body.",
Format:"<length>",
},
},
Body:BodyDescriptor{
ContentType:"application/json; charset=utf-8",
Format:`{
"repositories":[
<name>,
...
]
}`,
},
},
},
},
{
Name:"Catalog Fetch Paginated",
Description:"Return the specified portion of repositories.",