ExtensionsInstall
Install a Postgres extension
Installs an allowlisted Postgres extension on the selected `X-Athena-Client` database. Requires a client-bound API key with `management.extensions.write`. Audit rows require `public.database_audit_log` on the gateway logging Postgres database.
Header Parameters
X-Athena-Client*string
apikey*string
Request Body
application/json
extension_name*string
Extension to install (allowlisted).
if_not_exists?boolean
Default
falseResponse Body
curl -X POST "https://athena-cluster.com/management/extensions/install" \ -H "X-Athena-Client: string" \ -H "apikey: string" \ -H "Content-Type: application/json" \ -d '{ "extension_name": "pgcrypto" }'Empty
Empty
Empty
Empty
Empty
List management API capabilities for a client GET
Requires `X-Athena-Client` and a client-bound API key with `management.read`.
Drop a Postgres function by signature DELETE
Issues `DROP FUNCTION schema.function(arg_types...) RESTRICT`. Requires `management.functions.drop` and the same audit tables as upsert.