Source code for models.alert_state_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class AlertStateEnum(object): """Implementation of the 'AlertState' enum. Specifies the current state of the Alert. kAlertNote - Alerts that are just for note. kAlertOpen - Alerts that are unresolved. kAlertResolved - Alerts that are already marked as resolved. kAlertSuppressed - Alerts that are suppressed due to snooze settings. Attributes: KOPEN: TODO: type description here. KNOTE: TODO: type description here. KRESOLVED: TODO: type description here. KSUPPRESSED: TODO: type description here. """ KNOTE = 'kNote' KOPEN = 'kOpen' KRESOLVED = 'kResolved' KSUPPRESSED = 'kSuppressed'