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 requiredID of the registrymin length3max length39pattern^[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$name
string requiredThe name of the cloud provider registry.min length3max length39pattern^[a-zA-Z]((-|\s)?[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*)?$description
stringThe description of the integration.max length200pattern^[a-zA-Z0-9.,?\s\\/'"()[\];`%^&*\-_:!]+$uid
stringUnique id of the registry.provider
string requiredCloud provider to be used for the selected resourceone ofaws, azure, civo, gcp, oci, cloudflare, byokregion
string requiredintegrationId
stringIntegration to use for this registry.pattern^((org|team)\/)?[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$restrictions
{object}BYOC restrictions configuration for controlling team accessenabled
boolean requiredEnable or disable BYOC restrictions for this entityteams
[array]List of teams that have access to this BYOC cluster- {object}
teamId
string requiredThe ID of the team that has access to this BYOC clusterupdatedAt
stringtime of updatecreatedAt
stringtime of creation
API
CLI
JS Client
GET /v1/cloud-providers/docker-registries/{registryId}
Example response
200 OK
Details about the given docker registry.
JSON
{
"data": {
"id": "example-registry",
"name": "Example Registry",
"description": "This is a new cloud provider registry.",
"uid": "nf-n7xyvdn4",
"provider": "gcp",
"region": "eu-west-1",
"integrationId": "gcp-integration"
}
}