Source code for models_v2.cdp_filter_status_1_enum

# -*- coding: utf-8 -*-

[docs]class CdpFilterStatus1Enum(object): """Implementation of the 'CdpFilterStatus1' enum. Specifies the CDP filter status. Attributes: NOTINSTALLED: TODO: type description here. INSTALLFILTERINPROGRESS: TODO: type description here. FILTERINSTALLEDIOINACTIVE: TODO: type description here. IOACTIVATIONINPROGRESS: TODO: type description here. IOACTIVE: TODO: type description here. IODEACTIVATIONINPROGRESS: TODO: type description here. UNINSTALLFILTERINPROGRESS: TODO: type description here. """ NOTINSTALLED = 'NotInstalled' INSTALLFILTERINPROGRESS = 'InstallFilterInProgress' FILTERINSTALLEDIOINACTIVE = 'FilterInstalledIOInactive' IOACTIVATIONINPROGRESS = 'IOActivationInProgress' IOACTIVE = 'IOActive' IODEACTIVATIONINPROGRESS = 'IODeactivationInProgress' UNINSTALLFILTERINPROGRESS = 'UninstallFilterInProgress'