Skip to main content
GET
List environment database connections

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

environmentName
string
required

Name of the environment Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$

Response

A list of database connections in the environment

resource
string

Resource path to the connection

name
string

Name of the connection

type
enum<string>

Type of database connection

Available options:
postgres,
bigquery,
snowflake,
trino,
databricks,
mysql,
duckdb,
motherduck,
ducklake,
publisher
fingerprint
string

Optional, opaque, stable fingerprint of this connection's data identity. It is a hash of the configuration that determines which data the connection reaches (its data-locating settings), and deliberately excludes credentials and other secret values, so it stays constant across credential rotation and changes only when the connection is pointed at different data. When present, it is used as this connection's contribution to content-addressed build identifiers so that builds re-address only when the underlying data identity actually changes; consumers should treat it as an opaque token and use the supplied value verbatim rather than deriving their own. This field is optional — when omitted, a connection identity is derived locally instead.

attributes
object

Connection capabilities and configuration attributes

proxy
object

Optional network proxy through which the connection is reached. Applies to any connection type whose database is not directly reachable (e.g. behind a bastion). The proxy is established below the driver, so the driver connects to a local endpoint transparently. Modeled as a discriminated union on type so additional proxy mechanisms can be added later.

postgresConnection
object

PostgreSQL database connection configuration

bigqueryConnection
object

Google BigQuery database connection configuration

snowflakeConnection
object

Snowflake database connection configuration

trinoConnection
object

Trino database connection configuration

databricksConnection
object

Databricks SQL warehouse connection configuration

mysqlConnection
object

MySQL database connection configuration

duckdbConnection
object

DuckDB database connection configuration. Publisher intentionally exposes only data-source intent here. Database files, working directories, filesystem/network policy, extension loading, setup SQL, temp directories, and resource knobs are owned by Publisher so environment configs cannot widen deployment policy through low-level DuckDB settings.

motherduckConnection
object

MotherDuck database connection configuration

ducklakeConnection
object

DuckLake lakehouse connection configuration

publisherConnection
object

Malloy Publisher proxy connection. Proxies SQL to a remote Publisher dataplane instead of connecting to a warehouse directly. The remote dataplane owns authentication, access control, and read-only enforcement.