Container Registry API, REST: LifecyclePolicy.ListDryRunResultAffectedImages
Retrieves the list of the affected images.
HTTP request
GET https://container-registry.api.cloud.yandex.net/container-registry/v1/dryRunLifecyclePolicyResults/{dryRunLifecyclePolicyResultId}:affectedImages
Path parameters
Field |
Description |
dryRunLifecyclePolicyResultId |
string Required field. ID of the dry run result of the lifecycle policy |
Query parameters
Field |
Description |
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 affected images listed in the response. The expression must specify:
|
orderBy |
string Sorting the list by LifecyclePolicy.name and LifecyclePolicy.createdAt fields. |
Response
HTTP Code: 200 - OK
{
"affectedImages": [
{
"id": "string",
"name": "string",
"digest": "string",
"compressedSize": "string",
"config": {
"id": "string",
"digest": "string",
"size": "string",
"urls": [
"string"
]
},
"layers": [
{
"id": "string",
"digest": "string",
"size": "string",
"urls": [
"string"
]
}
],
"tags": [
"string"
],
"createdAt": "string"
}
],
"nextPageToken": "string"
}
Field |
Description |
affectedImages[] |
List of affected images. |
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 |
Image
An Image resource. For more information, see Docker image.
Field |
Description |
id |
string Output only. ID of the Docker image. |
name |
string Name of the Docker image. |
digest |
string Content-addressable identifier of the Docker image. |
compressedSize |
string (int64) Compressed size of the Docker image, specified in bytes. |
config |
Configuration of the Docker image. |
layers[] |
Layers of the Docker image. |
tags[] |
string Tags of the Docker image. Each tag is unique within the repository. |
createdAt |
string (date-time) Output only. Creation timestamp in RFC3339 String in RFC3339 To work with values in this field, use the APIs described in the |
Blob
A Blob resource.
Field |
Description |
id |
string Output only. ID of the blob. |
digest |
string Content-addressable identifier of the blob. |
size |
string (int64) Size of the blob, specified in bytes. |
urls[] |
string List of blob urls. |