Googleapis Replicapool
Googleapis Replicapool is a connector for the Google Compute Engine Replica Pool API, used to manage groups of replicated virtual machine instances.
- Base URL:
https://www.googleapis.com/replicapool/v1beta1/projects - 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
replicapool_pools_list— GET /{projectName}/zones/{zone}/pools — List all replica pools.replicapool_pools_get— GET /{projectName}/zones/{zone}/pools/{poolName} — Gets information about a single replica pool.replicapool_replicas_list— GET /{projectName}/zones/{zone}/pools/{poolName}/replicas — Lists all replicas in a pool.replicapool_replicas_get— GET /{projectName}/zones/{zone}/pools/{poolName}/replicas/{replicaName} — Gets information about a specific replica.replicapool_pools_insert— POST /{projectName}/zones/{zone}/pools — Inserts a new replica pool.replicapool_pools_delete— POST /{projectName}/zones/{zone}/pools/{poolName} — Deletes a replica pool.
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: replicapool_pools_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: replicapool_pools_list, replicapool_pools_get, replicapool_replicas_list, replicapool_replicas_get, replicapool_pools_insert, replicapool_pools_delete |
poolName |
string | no | — | Path parameter poolName (required by some operations). |
projectName |
string | no | — | Path parameter projectName (required by some operations). |
replicaName |
string | no | — | Path parameter replicaName (required by some operations). |
zone |
string | no | — | Path parameter zone (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). |