Obtaining an Image Retention Policy Record
Function
Obtain the details of an image retention policy.
URI
GET /v2/manage/namespaces/{namespace}/repos/{repository}/retentions/{retention_id}
Table 1 describes the parameters.
Request
Response
- Response parameters
Table 2 Response body parameter description Parameter
Type
Description
algorithm
String
Retention policy matching rule. The value is or.
id
Integer
Rule ID.
rules
Array of objects
Image retention policy.
scope
String
Reserved field.
Table 3 rules parameter description Parameter
Type
Description
template
String
Retention policy type. The value can be date_rule (number of days) or tag_rule (number of tags).
params
Object
- If template is set to date_rule, set params to {"days": "xxx"}.
- If template is set to tag_rule, set params to {"num": "xxx"}.
tag_selectors
Array of objects
Image tags that are not counted in the retention policy.
- Example response
{ "algorithm": "or", "id": 1093, "rules": [ { "template": "date_rule", "params": { "days": "30" }, "tag_selectors": [ { "kind": "label", "pattern": "v5" }, { "kind": "label", "pattern": "1.0.1" }, { "kind": "regexp", "pattern": "^123$" } ] } ], "scope": "" }
Status Code
Status Code |
Description |
---|---|
200 |
Request successful. |
400 |
Request error. |
401 |
Authentication failed. |
404 |
The organization does not exist. |
500 |
Internal error. |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.