get_job
Retrieve details of a specific Dataproc job by providing the Google Cloud project ID, region, and job ID. Simplify job monitoring and management on Dataproc MCP Server.
Instructions
Get details of a specific job.
Args:
    project_id: Google Cloud project ID
    region: Dataproc region
    job_id: Job ID
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| job_id | Yes | ||
| project_id | Yes | ||
| region | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "job_id": {
      "title": "Job Id",
      "type": "string"
    },
    "project_id": {
      "title": "Project Id",
      "type": "string"
    },
    "region": {
      "title": "Region",
      "type": "string"
    }
  },
  "required": [
    "project_id",
    "region",
    "job_id"
  ],
  "title": "get_jobArguments",
  "type": "object"
}