Type Alias DataSourcesResponseNew

Response containing the list of available datasources and optional connector node details.

type DataSourcesResponseNew = {
    connectorNodes?: dataSources.ConnectorNodesInfo[];
    dataSources: dataSources.DataSourceNew[];
    updatedAt: string;
}
Index
connectorNodes?: dataSources.ConnectorNodesInfo[]

List of connector nodes. Present only when detail is true in the request.

dataSources: dataSources.DataSourceNew[]

List of available datasources with their metadata.

updatedAt: string

ISO 8601 timestamp of when the datasource list was last updated.