# -*- coding: utf-8 -*-
[docs]class CategoryEnum(object):
"""Implementation of the 'Category' enum.
Category of alerts by which summary is grouped.
Attributes:
KDISK: TODO: type description here.
KNODE: TODO: type description here.
KCLUSTER: TODO: type description here.
KNODEHEALTH: TODO: type description here.
KCLUSTERHEALTH: TODO: type description here.
KBACKUPRESTORE: TODO: type description here.
KENCRYPTION: TODO: type description here.
KARCHIVALRESTORE: TODO: type description here.
KREMOTEREPLICATION: TODO: type description here.
KQUOTA: TODO: type description here.
KLICENSE: TODO: type description here.
KHELIOSPROACTIVEWELLNESS: TODO: type description here.
KHELIOSANALYTICSJOBS: TODO: type description here.
KHELIOSSIGNATUREJOBS: TODO: type description here.
KSECURITY: TODO: type description here.
KAPPSINFRA: TODO: type description here.
KANTIVIRUS: TODO: type description here.
KARCHIVALCOPY: TODO: type description here.
"""
KDISK = 'kDisk'
KNODE = 'kNode'
KCLUSTER = 'kCluster'
KNODEHEALTH = 'kNodeHealth'
KCLUSTERHEALTH = 'kClusterHealth'
KBACKUPRESTORE = 'kBackupRestore'
KENCRYPTION = 'kEncryption'
KARCHIVALRESTORE = 'kArchivalRestore'
KREMOTEREPLICATION = 'kRemoteReplication'
KQUOTA = 'kQuota'
KLICENSE = 'kLicense'
KHELIOSPROACTIVEWELLNESS = 'kHeliosProActiveWellness'
KHELIOSANALYTICSJOBS = 'kHeliosAnalyticsJobs'
KHELIOSSIGNATUREJOBS = 'kHeliosSignatureJobs'
KSECURITY = 'kSecurity'
KAPPSINFRA = 'kAppsInfra'
KANTIVIRUS = 'kAntivirus'
KARCHIVALCOPY = 'kArchivalCopy'