Googleapis Bigquery
Connector for the googleapis-bigquery API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://bigquery.googleapis.com/bigquery/v2 - 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
bigquery_projects_list— GET /projects — Lists all projects to which you have been granted any project role.bigquery_datasets_list— GET /projects/{projectId}/datasets — Lists all datasets in the specified project to which you have been granted the Rbigquery_datasets_get— GET /projects/{projectId}/datasets/{datasetId} — Returns the dataset specified by datasetID.bigquery_models_list— GET /projects/{projectId}/datasets/{datasetId}/models — Lists all models in the specified dataset. Requires the READER dataset role. Aftbigquery_models_get— GET /projects/{projectId}/datasets/{datasetId}/models/{modelId} — Gets the specified model resource by model ID.bigquery_routines_list— GET /projects/{projectId}/datasets/{datasetId}/routines — Lists all routines in the specified dataset. Requires the READER dataset role.
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: bigquery_projects_list
# (attach an 'oauth' credential to the task — no inline secrets)