Container Registry API, REST: LifecyclePolicy.Get
Returns the specified lifecycle policy.
To get the list of all available lifecycle policies, make a List request.
HTTP request
GET https://container-registry.api.cloud.yandex.net/container-registry/v1/lifecyclePolicies/{lifecyclePolicyId}
Path parameters
Field |
Description |
lifecyclePolicyId |
string Required field. ID of the lifecycle policy. |
Response
HTTP Code: 200 - OK
{
"id": "string",
"name": "string",
"repositoryId": "string",
"description": "string",
"status": "string",
"createdAt": "string",
"rules": [
{
"description": "string",
"expirePeriod": "string",
"tagRegexp": "string",
"untagged": "boolean",
"retainedTop": "string"
}
]
}
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. |