list_clusters
Retrieve a list of Dataproc clusters within a specified Google Cloud project and region to manage and monitor cloud data processing resources efficiently.
Instructions
List Dataproc clusters in a project and region.
Args:
project_id: Google Cloud project ID
region: Dataproc region (e.g., us-central1)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
region | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
},
"region": {
"title": "Region",
"type": "string"
}
},
"required": [
"project_id",
"region"
],
"title": "list_clustersArguments",
"type": "object"
}