Googleapis Storage
Googleapis Storage is a generated connector for Google Cloud Storage, an object storage service for storing and retrieving files and application data.
- 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)
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: storage_buckets_list, storage_buckets_get, storage_bucketaccesscontrols_list, storage_bucketaccesscontrols_get, storage_defaultobjectaccesscontrols_list, storage_defaultobjectaccesscontrols_get |
bucket |
string | no | — | Path parameter bucket (required by some operations). |
entity |
string | no | — | Path parameter entity (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |