Source code for models.removal_state_node_enum

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

[docs]class RemovalStateNodeEnum(object): """Implementation of the 'RemovalState_Node' enum. RemovalState specifies the removal state of the node. 'kDontRemove' means the state of object is functional and it is not being removed. 'kMarkedForRemoval' means the object is being removed. 'kOkToRemove' means the object has been removed on the Cohesity Cluster and if the object is physical, it can be removed from the Cohesity Cluster. Attributes: KDONTREMOVE: TODO: type description here. KMARKEDFORREMOVAL: TODO: type description here. KOKTOREMOVE: TODO: type description here. """ KDONTREMOVE = 'kDontRemove' KMARKEDFORREMOVAL = 'kMarkedForRemoval' KOKTOREMOVE = 'kOkToRemove'