Names

Name availability checks for new registries

This tag groups all operations for names.

Get container registry name availability

head

Validate that the name is suitable to use for a new registry:

  • it uses only the characters "a-z", "0-9", or "-"

  • and starts with a letter and ends with a letter or number

  • and is between 3 to 63 characters in length

  • and is available

Authorizations
AuthorizationstringRequired

You will need to base64 encode the string containing your credentials. Separate your username and password with a colon, i.e., username:password and send it as 'Authorization' request header. More details: https://en.wikipedia.org/wiki/Basic_access_authentication

Path parameters
namestringRequired

The desired registry name

Pattern: ^[a-z][-a-z0-9]{1,61}[a-z0-9]$
Responses
chevron-right
200

OK. The registry name is valid but already in use

No content

head
/names/{name}

No content

Last updated

Was this helpful?