Googleapis Storage
Connector for the googleapis-storage API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://storage.googleapis.com/storage/v1 - 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
storage_buckets_list— GET /b — Retrieves a list of buckets for a given project.storage_buckets_get— GET /b/{bucket} — Returns metadata for the specified bucket.storage_bucketaccesscontrols_list— GET /b/{bucket}/acl — Retrieves ACL entries on the specified bucket.storage_bucketaccesscontrols_get— GET /b/{bucket}/acl/{entity} — Returns the ACL entry for the specified entity on the specified bucket.storage_defaultobjectaccesscontrols_list— GET /b/{bucket}/defaultObjectAcl — Retrieves default object ACL entries on the specified bucket.storage_defaultobjectaccesscontrols_get— GET /b/{bucket}/defaultObjectAcl/{entity} — Returns the default object ACL entry for the specified entity on the specified b
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: storage_buckets_list
# (attach an 'oauth' credential to the task — no inline secrets)