Source code for models.alert_type_bucket_list_enum

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

[docs]class AlertTypeBucketListEnum(object): """Implementation of the 'alertTypeBucketList' enum. TODO: type enum description here. Attributes: KSOFTWARE: TODO: type description here. KHARDWARE: TODO: type description here. KSERVICE: TODO: type description here. KOTHER: TODO: type description here. """ KSOFTWARE = 'kSoftware' KHARDWARE = 'kHardware' KSERVICE = 'kService' KOTHER = 'kOther'