get_batch_job
Retrieve detailed information about a specific batch job on Google Cloud Dataproc. Provide project ID, region, and batch ID to access job status and execution details.
Instructions
Get details of a specific batch job.
Args:
project_id: Google Cloud project ID
region: Dataproc region
batch_id: Batch job ID
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": "get_batch_jobArguments",
"type": "object"
}