get_k8s_resource_details
Retrieve the manifest of a Kubernetes resource using cluster ID and resource UID for precise details and security insights.
Instructions
Get the latest manifest of a Kubernetes resource
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_id | Yes | ID of the Kubernetes cluster | |
resource_uid | Yes | Resource UID to get the details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cluster_id": {
"description": "ID of the Kubernetes cluster",
"type": "string"
},
"resource_uid": {
"description": "Resource UID to get the details for",
"type": "string"
}
},
"required": [
"cluster_id",
"resource_uid"
],
"type": "object"
}