Source code for models.alert_type_bucket_enum

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

[docs]class AlertTypeBucketEnum(object): """Implementation of the 'AlertTypeBucket' enum. Specifies the Alert type bucket. Specifies the Alert type bucket. kHardware - Alerts related to hardware on which Cohesity software is running. kSoftware - Alerts which are related to software components. kDataService - Alerts related to data services. kMaintenance - Alerts relates to maintenance activities. Attributes: KSOFTWARE: TODO: type description here. KHARDWARE: TODO: type description here. KDATASERVICE: TODO: type description here. KMAINTENANCE: TODO: type description here. """ KSOFTWARE = 'kSoftware' KHARDWARE = 'kHardware' KDATASERVICE = 'kDataService' KMAINTENANCE = 'kMaintenance'