DataProductAccessInfo: {
    accessPointGroupId: string | undefined;
    accessPointGroupLabel: string | undefined;
    dataProductId: string;
    dataProductLabel: string;
    deploymentId: string | undefined;
    environment: string | undefined;
    supportEmails: string[];
    warehouse: string | undefined;
}

Plain description of the data product a query runs against, used to explain entitlement failures and to point the user at where access can be requested.

NOTE: this is intentionally plain data rather than the query builder state itself, so the result panel does not have to depend on DataProductQueryBuilderState.

Type declaration

  • accessPointGroupId: string | undefined
  • accessPointGroupLabel: string | undefined
  • dataProductId: string

    Identifier of the data product as used by external applications (e.g. Marketplace routing), which is not necessarily the same as the display label.

  • dataProductLabel: string
  • deploymentId: string | undefined
  • environment: string | undefined
  • supportEmails: string[]
  • warehouse: string | undefined