delete_batch_job
Remove a specified batch job from Google Cloud Dataproc by providing the project ID, region, and batch job ID. Simplifies batch job management within the Dataproc MCP Server.
Instructions
Delete a batch job.
Args:
project_id: Google Cloud project ID
region: Dataproc region
batch_id: Batch job ID to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
batch_id | Yes | ||
project_id | Yes | ||
region | Yes |
Input Schema (JSON Schema)
{
"properties": {
"batch_id": {
"title": "Batch Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"region": {
"title": "Region",
"type": "string"
}
},
"required": [
"project_id",
"region",
"batch_id"
],
"title": "delete_batch_jobArguments",
"type": "object"
}