get_deployment_details
Retrieve detailed information about a specific Google Cloud Platform Deployment Manager deployment, including project ID and deployment name, for comprehensive resource insights.
Instructions
Get details of a specific Deployment Manager deployment.
Args:
project_id: The ID of the GCP project
deployment_name: The name of the deployment to get details for
Returns:
Details of the specified deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_name": {
"title": "Deployment Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"deployment_name"
],
"title": "get_deployment_detailsArguments",
"type": "object"
}