list_disks
Retrieve and list Compute Engine persistent disks within a specified GCP project. Optionally filter results by zone for targeted disk management and monitoring.
Instructions
List Compute Engine persistent disks in a GCP project.
Args:
project_id: The ID of the GCP project to list disks for
zone: Optional zone to filter disks (e.g., "us-central1-a")
Returns:
List of persistent disks in the specified GCP project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
zone | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
},
"zone": {
"default": "",
"title": "Zone",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "list_disksArguments",
"type": "object"
}