get_containers_baselines
Retrieve runtime baselines for specified containers to assess security and configuration standards in Kubernetes and cloud environments.
Instructions
Get runtime baselines for multiple containers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_ids | Yes | List of container IDs to get baselines for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"container_ids": {
"description": "List of container IDs to get baselines for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"container_ids"
],
"type": "object"
}