delete_cluster
Remove a Dataproc cluster by specifying the Google Cloud project ID, region, and cluster name. This tool simplifies cluster management within the Dataproc MCP Server environment.
Instructions
Delete a Dataproc cluster.
Args:
project_id: Google Cloud project ID
region: Dataproc region
cluster_name: Name of the cluster to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_name | Yes | ||
project_id | Yes | ||
region | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_name": {
"title": "Cluster Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"region": {
"title": "Region",
"type": "string"
}
},
"required": [
"project_id",
"region",
"cluster_name"
],
"title": "delete_clusterArguments",
"type": "object"
}