Type Alias CreateConnectionReq

type CreateConnectionReq = {
    authUrlOnly?: boolean;
    connectionName: string;
    connectionProperties: unknown;
    dataSourceId: string;
    spaceId?: string;
    tags?: string[];
}
Index

Properties

authUrlOnly?: boolean

When set to true, only authentication URL will be returned if datasource supports OAuth (other properties set in the request will ignored). This property will be ignored if the request is not OAuth or datasource doesn't support OAuth

connectionName: string
connectionProperties: unknown
dataSourceId: string
spaceId?: string
tags?: string[]