Cloud Providers /
Get docker registry
Get information about the given docker registry
Required permission
Account > Cloud > Registries > Read
Path parameters
registryId
string requiredID of the docker registry
Response body
- {object}Response object.
data
{object} requiredResult data.id
string requiredIdentifier for the docker registry.name
string requiredThe name of the docker registry.description
stringA short description of the docker registry.provider
stringThe cloud provider to which this docker registry belongs to.region
stringThe region in which this registry was created.createdAt
string requiredThe time the registry was created.
API
CLI
JS Client
GET /v1/cloud-providers/docker-registries/{registryId}
Example response
200 OK
Details about the given docker registry.
JSON
{
"data": {
"id": "gcp-integration",
"name": "GCP integration",
"description": "The registry description",
"provider": "aws",
"region": "eu-west-1",
"createdAt": "2021-01-20T11:19:53.175Z"
}
}