• Returns the list of datasources available on the connector node. Each entry includes the connector provider, capabilities, and optional UI metadata. Filter by dataSourceId to retrieve a specific datasource, or set includeDisabled to true to include datasources that have been disabled.

    Parameters

    • query: {
          dataSourceId?: string;
          detail?: boolean;
          includeDisabled?: boolean;
          includeui?: boolean;
      }

      an object with query parameters

      • OptionaldataSourceId?: string

        Filters results to the specified datasource ID. When this parameter appears multiple times, only the last value is used.

      • Optionaldetail?: boolean
      • OptionalincludeDisabled?: boolean
      • Optionalincludeui?: boolean
    • Optionaloptions: ApiCallOptions

    Returns Promise<dataSources.GetDataSourcesHttpResponse>

    getDataSources(
    {
    dataSourceId: "rest",
    detail: true,
    includeDisabled: true,
    includeui: true
    }
    )

    GetDataSourcesHttpError