Azure Cosmos Db
Connector for the azure-cosmos-db API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://management.azure.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
operations_list— GET /providers/Microsoft.DocumentDB/operations — Lists all of the available Cosmos DB Resource Provider operations.databaseaccounts_list— GET /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/databaseAccounts — Lists all the Azure Cosmos DB database accounts available under the subscriptiondatabaseaccounts_listbyresourcegroup— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts — Lists all the Azure Cosmos DB database accounts available under the given resourdatabaseaccounts_get— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName} — Retrieves the properties of an existing Azure Cosmos DB database account.cassandraresources_listcassandrakeyspaces— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/cassandraKeyspaces — Lists the Cassandra keyspaces under an existing Azure Cosmos DB database accountcassandraresources_getcassandrakeyspace— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/cassandraKeyspaces/{keyspaceName} — Gets the Cassandra keyspaces under an existing Azure Cosmos DB database account
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: operations_list
# (attach an 'oauth' credential to the task — no inline secrets)