Source code for models.alerting_policy_enum

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

[docs]class AlertingPolicyEnum(object): """Implementation of the 'AlertingPolicy' enum. TODO: type enum description here. Attributes: KSUCCESS: TODO: type description here. KFAILURE: TODO: type description here. KSLAVIOLATION: TODO: type description here. """ KSUCCESS = 'kSuccess' KFAILURE = 'kFailure' KSLAVIOLATION = 'kSlaViolation'