get_deployment_details
Retrieve specific deployment details by name to monitor and manage configurations effectively. Enables clear insights into deployment settings and status for better operational control.
Instructions
Retrieve details of a specific deployment using its name.
Args: deployment_name: The name of the deployment to retrieve details for.
Returns: A dictionary containing the details of the deployment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_name": {
"title": "Deployment Name",
"type": "string"
}
},
"required": [
"deployment_name"
],
"title": "get_deployment_detailsArguments",
"type": "object"
}