Container Registry API, gRPC: LifecyclePolicyService.List
Retrieves the list of lifecycle policies in the specified repository.
gRPC request
rpc List (ListLifecyclePoliciesRequest) returns (ListLifecyclePoliciesResponse)
ListLifecyclePoliciesRequest
{
// Includes only one of the fields `registryId`, `repositoryId`
"registryId": "string",
"repositoryId": "string",
// end of the list of possible fields
"pageSize": "int64",
"pageToken": "string",
"filter": "string",
"orderBy": "string"
}
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 |
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. |
ListLifecyclePoliciesResponse
{
"lifecyclePolicies": [
{
"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"
}
]
}
],
"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 |
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. |