Represents a data connection returned from a GET request.

type ConnectionGet = {
    connectionProperties?: unknown;
    createdAt?: string;
    datasourceID?: string;
    links: dataConnections.Link;
    privileges: dataConnections.Privilege[];
    qArchitecture: 0 | 1;
    qConnectionSecret?: string;
    qConnectStatement: string;
    qCredentialsID?: string;
    qEngineObjectID: string;
    qID: string;
    qLogOn: 0 | 1;
    qName: string;
    qri?: string;
    qSeparateCredentials?: boolean;
    qType: string;
    space?: string;
    tags?: string[];
    tenant: string;
    updated?: string;
    user?: string;
}
Index

Properties

connectionProperties?: unknown

Connection properties parsed from the connection string. Only included in the response when parseConnection is true.

createdAt?: string
datasourceID?: string
qArchitecture: 0 | 1
qConnectionSecret?: string
qConnectStatement: string
qCredentialsID?: string
qEngineObjectID: string
qID: string
qLogOn: 0 | 1
qName: string
qri?: string
qSeparateCredentials?: boolean
qType: string
space?: string
tags?: string[]
tenant: string
updated?: string
user?: string