rsdo 0.1.20260901

A Rust client library for the DigitalOcean API v2
Documentation
operationId: databases_get_connectionPool

summary: Retrieve Existing Connection Pool (PostgreSQL)

description: >-
  To show information about an existing connection pool for a PostgreSQL
  database cluster, send a GET request to
  `/v2/databases/$DATABASE_ID/pools/$POOL_NAME`.

  The response will be a JSON object with a `pool` key.

tags:
  - Databases

parameters:
  - $ref: 'parameters.yml#/database_cluster_uuid'
  - $ref: 'parameters.yml#/pool_name'

responses:
  '200':
    $ref: 'responses/connection_pool.yml'

  '401':
    $ref: '../../shared/responses/unauthorized.yml'

  '404':
    $ref: '../../shared/responses/not_found.yml'

  '429':
    $ref: '../../shared/responses/too_many_requests.yml'

  '500':
    $ref: '../../shared/responses/server_error.yml'

  default:
    $ref: '../../shared/responses/unexpected_error.yml'

x-codeSamples:
  - $ref: 'examples/curl/databases_get_connectionPool.yml'
  - $ref: 'examples/go/databases_get_connectionPool.yml'
  - $ref: 'examples/python/databases_get_connectionPool.yml'

security:
  - bearer_auth:
    - 'database:read'