Source code for models.type_protection_policy_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class TypeProtectionPolicyEnum(object):
"""Implementation of the 'Type_ProtectionPolicy' enum.
Specifies the type of the protection policy.
'kRegular' means a regular Protection Policy.
'kRPO' means an RPO Protection Policy.
Attributes:
KREGULAR: TODO: type description here.
KRPO: TODO: type description here.
"""
KREGULAR = 'kRegular'
KRPO = 'kRPO'