Google Cloudtasks
Google Cloud Tasks is a managed queue service for creating, dispatching, and controlling asynchronous background tasks.
- Base URL:
https://cloudtasks.googleapis.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
cloudtasks_projects_locations_queues_tasks_get— GET /v2beta3/{name} — Gets a task.cloudtasks_projects_locations_list— GET /v2beta3/{name}/locations — Lists information about the supported locations for this service.cloudtasks_projects_locations_queues_list— GET /v2beta3/{parent}/queues — Lists queues. Queues are returned in lexicographical order.cloudtasks_projects_locations_queues_tasks_list— GET /v2beta3/{parent}/tasks — Lists the tasks in a queue. By default, only the BASIC view is retrieved due tocloudtasks_projects_locations_queues_tasks_delet— DELETE /v2beta3/{name} — Deletes a task. A task can be deleted if it is scheduled or dispatched. A task ccloudtasks_projects_locations_queues_patch— PATCH /v2beta3/{name} — Updates a queue. This method creates the queue if it does not exist and updates
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: cloudtasks_projects_locations_queues_tasks_get
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: cloudtasks_projects_locations_queues_tasks_get, cloudtasks_projects_locations_list, cloudtasks_projects_locations_queues_list, cloudtasks_projects_locations_queues_tasks_list, cloudtasks_projects_locations_queues_tasks_delet, cloudtasks_projects_locations_queues_patch |
name |
string | no | — | Path parameter name (required by some operations). |
parent |
string | no | — | Path parameter parent (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |