Source code for models_v2.schema_enum

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

[docs]class SchemaEnum(object): """Implementation of the 'Schema' enum. Specifies the schema of this Centrify zone. Attributes: CENTRIFYDYNAMICSCHEMA_1_0: TODO: type description here. CENTRIFYDYNAMICSCHEMA_2_0: TODO: type description here. CENTRIFYSFU_3_0: TODO: type description here. CENTRIFYSFU_4_0: TODO: type description here. CENTRIFYCDCRFC2307: TODO: type description here. CENTRIFYDYNAMICSCHEMA_3_0: TODO: type description here. CENTRIFYCDCRFC2307_2: TODO: type description here. CENTRIFYDYNAMICSCHEMA_5_0: TODO: type description here. CENTRIFYCDCRFC2307_3: TODO: type description here. CENTRIFYSFU_3_0_V5: TODO: type description here. """ CENTRIFYDYNAMICSCHEMA_1_0 = 'CentrifyDynamicSchema_1_0' CENTRIFYDYNAMICSCHEMA_2_0 = 'CentrifyDynamicSchema_2_0' CENTRIFYSFU_3_0 = 'CentrifySfu_3_0' CENTRIFYSFU_4_0 = 'CentrifySfu_4_0' CENTRIFYCDCRFC2307 = 'CentrifyCdcRfc2307' CENTRIFYDYNAMICSCHEMA_3_0 = 'CentrifyDynamicSchema_3_0' CENTRIFYCDCRFC2307_2 = 'CentrifyCdcRfc2307_2' CENTRIFYDYNAMICSCHEMA_5_0 = 'CentrifyDynamicSchema_5_0' CENTRIFYCDCRFC2307_3 = 'CentrifyCdcRfc2307_3' CENTRIFYSFU_3_0_V5 = 'CentrifySfu_3_0_V5'