Skip to main content
GET
/
projects
/
{projectName}
/
connections
Error
A valid request URL is required to generate request examples
[
  {
    "resource": "<string>",
    "name": "<string>",
    "type": "postgres",
    "attributes": {
      "dialectName": "<string>",
      "isPool": true,
      "canPersist": true,
      "canStream": true
    },
    "postgresConnection": {
      "host": "<string>",
      "port": 123,
      "databaseName": "<string>",
      "userName": "<string>",
      "password": "<string>",
      "connectionString": "<string>"
    },
    "bigqueryConnection": {
      "defaultProjectId": "<string>",
      "billingProjectId": "<string>",
      "location": "<string>",
      "serviceAccountKeyJson": "<string>",
      "maximumBytesBilled": "<string>",
      "queryTimeoutMilliseconds": "<string>"
    },
    "snowflakeConnection": {
      "account": "<string>",
      "username": "<string>",
      "password": "<string>",
      "warehouse": "<string>",
      "database": "<string>",
      "schema": "<string>",
      "responseTimeoutMilliseconds": 123
    },
    "trinoConnection": {
      "server": "<string>",
      "port": 123,
      "catalog": "<string>",
      "schema": "<string>",
      "user": "<string>",
      "password": "<string>"
    },
    "mysqlConnection": {
      "host": "<string>",
      "port": 123,
      "database": "<string>",
      "user": "<string>",
      "password": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

projectName
string
required

Name of the project Standard identifier pattern for resource names

Response

A list of database connections in the project

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,
mysql
attributes
object

Connection capabilities and configuration attributes

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

mysqlConnection
object

MySQL database connection configuration