UNPKG

@coveo/platform-client

Version:

The main goal of this package is to provide an easy to configure and straightforward way of querying Coveo Cloud APIs using JavaScript.

68 lines 2.73 kB
/** * Monitoring level determines the alerts raised when a problem is detected on an organization */ export var LicenseMonitoringLevel; (function (LicenseMonitoringLevel) { /** * The organization is completely ignored, no one will be alerted or try to save it if the search is down */ LicenseMonitoringLevel["NO_MONITORING"] = "NO_MONITORING"; /** * The organization is monitored but problems are raised as low level alerts * People on maintenance will try to fix the organization if they happen to look at the low-level alerting channels */ LicenseMonitoringLevel["BASIC_MONITORING"] = "BASIC_MONITORING"; /** * The organization is actively monitored and problems raise pagers that would wake up on-duty developers at night */ LicenseMonitoringLevel["REGULAR_MONITORING"] = "REGULAR_MONITORING"; /** * The organization is actively monitored with an aggressive schedule so any potential problem * is identified under a minute */ LicenseMonitoringLevel["STRATEGIC_MONITORING"] = "STRATEGIC_MONITORING"; })(LicenseMonitoringLevel || (LicenseMonitoringLevel = {})); /** * Back-up type determines which index data is backed-up periodically */ export var LicenseIndexBackType; (function (LicenseIndexBackType) { /** * The organization's index is not backed-up. If the organization is deleted all the data must be crawled again. */ LicenseIndexBackType["NONE"] = "NONE"; /** * The organization's index is backed-up periodically. If the organization is deleted all the data can be restored. */ LicenseIndexBackType["REGULAR"] = "REGULAR"; /** * The organization's index is backed-up periodically. If the organization is deleted all the data can be restored. * Equivalent to REGULAR */ LicenseIndexBackType["FULL"] = "FULL"; })(LicenseIndexBackType || (LicenseIndexBackType = {})); /** * Configurability level of ML models */ export var LicenseMlModelConfigurability; (function (LicenseMlModelConfigurability) { /** * No advanced configurability available */ LicenseMlModelConfigurability["NONE"] = "NONE"; /** * All advanced configurability options available */ LicenseMlModelConfigurability["FULL"] = "FULL"; })(LicenseMlModelConfigurability || (LicenseMlModelConfigurability = {})); /** * Usage analytics visualization levels */ export var LicenseDataVisualizationAccessLevel; (function (LicenseDataVisualizationAccessLevel) { /** * Basic access */ LicenseDataVisualizationAccessLevel["BASIC"] = "BASIC"; })(LicenseDataVisualizationAccessLevel || (LicenseDataVisualizationAccessLevel = {})); //# sourceMappingURL=LicenseInterfaces.js.map