get_instance_details
Retrieve detailed information about a specific Google Compute Engine instance by providing the project ID, zone, and instance name, enabling precise resource monitoring and management.
Instructions
Get detailed information about a specific Compute Engine instance.
Args:
project_id: The ID of the GCP project
zone: The zone where the instance is located (e.g., "us-central1-a")
instance_name: The name of the instance to get details for
Returns:
Detailed information about the specified Compute Engine instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_name | Yes | ||
project_id | Yes | ||
zone | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instance_name": {
"title": "Instance Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"zone": {
"title": "Zone",
"type": "string"
}
},
"required": [
"project_id",
"zone",
"instance_name"
],
"title": "get_instance_detailsArguments",
"type": "object"
}