/** * Status of a config from a management server view. */ export declare const ConfigStatus: { /** * Status info is not available/unknown. */ readonly UNKNOWN: "UNKNOWN"; /** * Management server has sent the config to client and received ACK. */ readonly SYNCED: "SYNCED"; /** * Config is not sent. */ readonly NOT_SENT: "NOT_SENT"; /** * Management server has sent the config to client but hasn’t received * ACK/NACK. */ readonly STALE: "STALE"; /** * Management server has sent the config to client but received NACK. The * attached config dump will be the latest config (the rejected one), since * it is the persisted version in the management server. */ readonly ERROR: "ERROR"; }; /** * Status of a config from a management server view. */ export type ConfigStatus = /** * Status info is not available/unknown. */ 'UNKNOWN' | 0 /** * Management server has sent the config to client and received ACK. */ | 'SYNCED' | 1 /** * Config is not sent. */ | 'NOT_SENT' | 2 /** * Management server has sent the config to client but hasn’t received * ACK/NACK. */ | 'STALE' | 3 /** * Management server has sent the config to client but received NACK. The * attached config dump will be the latest config (the rejected one), since * it is the persisted version in the management server. */ | 'ERROR' | 4; /** * Status of a config from a management server view. */ export type ConfigStatus__Output = typeof ConfigStatus[keyof typeof ConfigStatus];