Container Registry API, REST: LifecyclePolicy.List
Retrieves the list of lifecycle policies in the specified repository.
HTTP request
GET https://container-registry.api.cloud.yandex.net/container-registry/v1/lifecyclePolicies
Query parameters
Field |
Description |
registryId |
string ID of the lifecycle policy. Includes only one of the fields |
repositoryId |
string Repository of the lifecycle policy. Includes only one of the fields |
pageSize |
string (int64) The maximum number of results per page to return. If the number of available |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters lifecycle policy resources listed in the response. The expression must specify:
|
orderBy |
string Sorting the list by LifecyclePolicy.name, LifecyclePolicy.createdAt and LifecyclePolicy.status fields. |
Response
HTTP Code: 200 - OK
{
"lifecyclePolicies": [
{
"id": "string",
"name": "string",
"repositoryId": "string",
"description": "string",
"status": "string",
"createdAt": "string",
"rules": [
{
"description": "string",
"expirePeriod": "string",
"tagRegexp": "string",
"untagged": "boolean",
"retainedTop": "string"
}
]
}
],
"nextPageToken": "string"
}
Field |
Description |
lifecyclePolicies[] |
List of lifecycle policies. |
nextPageToken |
string Token for getting the next page of the list. If the number of results is greater than Each subsequent page will have its own |
LifecyclePolicy
Field |
Description |
id |
string ID of the lifecycle policy. |
name |
string Name of the lifecycle policy. |
repositoryId |
string ID of the repository that the lifecycle policy belongs to. |
description |
string Description of the lifecycle policy. |
status |
enum (Status) Status of lifecycle policy.
|
createdAt |
string (date-time) Creation timestamp. String in RFC3339 To work with values in this field, use the APIs described in the |
rules[] |
The rules of lifecycle policy. |
LifecycleRule
Field |
Description |
description |
string Description of the lifecycle policy rule. |
expirePeriod |
string (duration) Period of time for automatic deletion. |
tagRegexp |
string Tag for specifying a filter in the form of a regular expression. |
untagged |
boolean Tag for applying the rule to Docker images without tags. |
retainedTop |
string (int64) Number of Docker images (falling under the specified filter by tags) that must be left, even if the expire_period has already expired. |