Container Registry API, gRPC: LifecyclePolicyService.Get
Returns the specified lifecycle policy.
To get the list of all available lifecycle policies, make a List request.
gRPC request
rpc Get (GetLifecyclePolicyRequest) returns (LifecyclePolicy)
GetLifecyclePolicyRequest
{
"lifecyclePolicyId": "string"
}
Field |
Description |
lifecyclePolicyId |
string Required field. ID of the lifecycle policy. |
LifecyclePolicy
{
"id": "string",
"name": "string",
"repositoryId": "string",
"description": "string",
"status": "Status",
"createdAt": "google.protobuf.Timestamp",
"rules": [
{
"description": "string",
"expirePeriod": "google.protobuf.Duration",
"tagRegexp": "string",
"untagged": "bool",
"retainedTop": "int64"
}
]
}
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 |
Creation timestamp. |
rules[] |
The rules of lifecycle policy. |
LifecycleRule
Field |
Description |
description |
string Description of the lifecycle policy rule. |
expirePeriod |
Period of time for automatic deletion. |
tagRegexp |
string Tag for specifying a filter in the form of a regular expression. |
untagged |
bool Tag for applying the rule to Docker images without tags. |
retainedTop |
int64 Number of Docker images (falling under the specified filter by tags) that must be left, even if the expire_period has already expired. |