Type Alias UiInfo

UI metadata for the datasource. Present only when includeui is true in the request.

type UiInfo = {
    connectorMainUrl?: string;
    connectUrl?: string;
    credentialsUrl?: string;
    iconRectUrl?: string;
    iconSquareUrl?: string;
    iframe?: boolean;
    loadModelSupport?: string;
    selectUrl?: string;
}
Index
connectorMainUrl?: string

URL of the connector's main iframe entry point.

connectUrl?: string

URL of the connector's connection dialog.

credentialsUrl?: string

URL of the connector's credentials dialog.

iconRectUrl?: string

URL of the rectangular connector icon.

iconSquareUrl?: string

URL of the square connector icon.

iframe?: boolean

When true, the connector UI is rendered in an iframe.

loadModelSupport?: string

Indicates whether the datasource supports the load model feature.

selectUrl?: string

URL of the connector's data selection dialog.