list_batch_jobs
Retrieve and manage Dataproc batch jobs in Google Cloud by specifying project ID, region, and page size for organized job listing and tracking.
Instructions
List Dataproc batch jobs.
Args:
project_id: Google Cloud project ID
region: Dataproc region
page_size: Number of results per page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | ||
project_id | Yes | ||
region | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_size": {
"default": 100,
"title": "Page Size",
"type": "integer"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"region": {
"title": "Region",
"type": "string"
}
},
"required": [
"project_id",
"region"
],
"title": "list_batch_jobsArguments",
"type": "object"
}