Source code for models_v2.protection_group_priority_enum
# -*- coding: utf-8 -*-
[docs]class ProtectionGroupPriorityEnum(object):
"""Implementation of the 'ProtectionGroupPriority' enum.
Specifies Protection Group priority.
Attributes:
KLOW: TODO: type description here.
KMEDIUM: TODO: type description here.
KHIGH: TODO: type description here.
"""
KLOW = 'kLow'
KMEDIUM = 'kMedium'
KHIGH = 'kHigh'