get_container_details
Retrieve detailed information about a container secured by RAD Security by providing its ID, enabling visibility into runtime data and security insights for Kubernetes and cloud environments.
Instructions
Get detailed information about a container secured by RAD Security
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | ID of the container to get details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"container_id": {
"description": "ID of the container to get details for",
"type": "string"
}
},
"required": [
"container_id"
],
"type": "object"
}