fetch_blob
Retrieve a specific blob by its digest from a container registry, using registry name and repository details. Facilitates efficient access to container image components.
Instructions
Fetch blob referenced by a digest in a manifest.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
digest | Yes | blob digest | |
registry | Yes | registry name | |
repository | Yes | repository name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"digest": {
"description": "blob digest",
"type": "string"
},
"registry": {
"description": "registry name",
"type": "string"
},
"repository": {
"description": "repository name",
"type": "string"
}
},
"required": [
"registry",
"repository",
"digest"
],
"type": "object"
}