Type Alias ConnectionCreate

Schema used to create a connection with given connection string (i.e. qConnectStatement) along with other metadata

type ConnectionCreate = {
    datasourceID: string;
    owner?: string;
    qArchitecture?: 0 | 1;
    qConnectionSecret?: string;
    qConnectStatement: string;
    qCredentialsID?: string;
    qCredentialsName?: string;
    qEngineObjectID?: string;
    qID?: string;
    qLogOn?: "0" | "1" | "LOG_ON_SERVICE_USER" | "LOG_ON_CURRENT_USER";
    qName: string;
    qPassword?: string;
    qriInRequest?: string;
    qSeparateCredentials?: boolean;
    qType: string;
    qUsername?: string;
    space?: string;
    tags?: string[];
}
Index

Properties

datasourceID: string

ID of the datasource associated with this connection

owner?: string
qArchitecture?: 0 | 1
qConnectionSecret?: string
qConnectStatement: string
qCredentialsID?: string
qCredentialsName?: string
qEngineObjectID?: string
qID?: string
qLogOn?: "0" | "1" | "LOG_ON_SERVICE_USER" | "LOG_ON_CURRENT_USER"
qName: string
qPassword?: string
qriInRequest?: string
qSeparateCredentials?: boolean
qType: string
qUsername?: string
space?: string
tags?: string[]