18 lines
426 B
JavaScript
18 lines
426 B
JavaScript
export const operatingStatusCodes = {
|
|
ONLINE: t('Online'),
|
|
DRAINING: t('Draining'),
|
|
OFFLINE: t('Offline'),
|
|
DEGRADED: t('Degraded'),
|
|
ERROR: t('Error'),
|
|
NO_MONITOR: t('No Monitor'),
|
|
};
|
|
|
|
export const provisioningStatusCodes = {
|
|
ACTIVE: t('Active'),
|
|
DELETED: t('Deleted'),
|
|
ERROR: t('Error'),
|
|
PENDING_CREATE: t('Pending Create'),
|
|
PENDING_UPDATE: t('Pending Update'),
|
|
PENDING_DELETE: t('Pending Delete'),
|
|
};
|