list_jobs
Retrieve and filter jobs within a Dataproc cluster by specifying project ID, region, cluster name, and job states. Simplify job management and monitoring in Google Cloud Dataproc environments.
Instructions
List jobs in a Dataproc cluster.
Args:
project_id: Google Cloud project ID
region: Dataproc region
cluster_name: Cluster name (optional)
job_states: Filter by job states
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_name | No | ||
job_states | No | ||
project_id | Yes | ||
region | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_name": {
"default": null,
"title": "Cluster Name",
"type": "string"
},
"job_states": {
"default": null,
"items": {
"type": "string"
},
"title": "Job States",
"type": "array"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"region": {
"title": "Region",
"type": "string"
}
},
"required": [
"project_id",
"region"
],
"title": "list_jobsArguments",
"type": "object"
}