Method list
Retrieves the list of Registry resources in the specified folder.
HTTP request
GET https://container-registry.api.cloud.yandex.net/container-registry/v1/registries
Query parameters
Parameter | Description |
---|---|
folderId | Required. ID of the folder to list registries in. To get the folder ID use a list request. The maximum string length in characters is 50. |
pageSize | The maximum number of results per page to return. If the number of available results is larger than pageSize, the service returns a nextPageToken that can be used to get the next page of results in subsequent list requests. Default value: 100. The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request. The maximum string length in characters is 100. |
filter | A filter expression that filters resources listed in the response. The expression must specify: 1. The field name. Currently you can use filtering only on Registry.name field. 2. An operator. Can be either = or != for single values, IN or NOT IN for lists of values. 3. Value or a list of values to compare against the values of the field. The maximum string length in characters is 1000. |
Response
HTTP Code: 200 - OK
{
"registries": [
{
"id": "string",
"folderId": "string",
"name": "string",
"status": "string",
"createdAt": "string",
"labels": "object"
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
registries[] | object A Registry resource. For more information, see Registry. |
registries[]. id |
string Output only. ID of the registry. |
registries[]. folderId |
string ID of the folder that the registry belongs to. |
registries[]. name |
string Name of the registry. |
registries[]. status |
string Output only. Status of the registry.
|
registries[]. createdAt |
string (date-time) Output only. Creation timestamp in RFC3339 text format. String in RFC3339 text format. |
registries[]. labels |
object Resource labels as |
nextPageToken | string This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken query parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results. |