Source code for models.type_protection_policy_request_enum

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

[docs]class TypeProtectionPolicyRequestEnum(object): """Implementation of the 'Type_ProtectionPolicyRequest' 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'