jfrog_list_running_images
Identify all active container images across runtime clusters, displaying their security and operational status with configurable filters, statistics, and time-based queries for streamlined management.
Instructions
List all running container images across runtime clusters with their security and operational status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filters | No | Filters to apply | |
num_of_rows | No | Number of rows to return | |
page_num | No | Page number | |
statistics | No | Whether to include statistics | |
timePeriod | No | Time period to query | now |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filters": {
"default": "",
"description": "Filters to apply",
"type": "string"
},
"num_of_rows": {
"default": 100,
"description": "Number of rows to return",
"type": "integer"
},
"page_num": {
"default": 1,
"description": "Page number",
"type": "integer"
},
"statistics": {
"default": true,
"description": "Whether to include statistics",
"type": "boolean"
},
"timePeriod": {
"default": "now",
"description": "Time period to query",
"type": "string"
}
},
"type": "object"
}