registry_repositories
Creates, updates, deletes, gets or lists a registry_repositories
resource.
Overview
Name | registry_repositories |
Type | Resource |
Id | digitalocean.container_registry.registry_repositories |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the repository. |
latest_tag | object | |
registry_name | string | The name of the container registry. |
tag_count | integer | The number of tags in the repository. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
registry_list_repositories | SELECT | registry_name | This endpoint has been deprecated in favor of the List All Container Registry Repositories [V2] endpoint. To list all repositories in your container registry, send a GET request to /v2/registry/$REGISTRY_NAME/repositories . |
SELECT
examples
This endpoint has been deprecated in favor of the List All Container Registry Repositories [V2] endpoint. To list all repositories in your container registry, send a GET request to /v2/registry/$REGISTRY_NAME/repositories
.
SELECT
name,
latest_tag,
registry_name,
tag_count
FROM digitalocean.container_registry.registry_repositories
WHERE registry_name = '{{ registry_name }}';