Type Alias DcaasConnectionCreate

Schema used to create a connection using a list of connection properties for given datasource

type DcaasConnectionCreate = {
    authUrlOnly?: boolean;
    connectionProperties: unknown;
    datasourceID: string;
    qName: string;
    space?: string;
    tags?: string[];
}
Index

Properties

authUrlOnly?: boolean

When set to true, only authentication URL will be returned (i.e. no connection will be created) if datasource supports OAuth, and 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

connectionProperties: unknown
datasourceID: string
qName: string
space?: string
tags?: string[]