Source code for models.object_class_search_principals_enum

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

[docs]class ObjectClassSearchPrincipalsEnum(object): """Implementation of the 'objectClass_SearchPrincipals' enum. TODO: type enum description here. Attributes: KUSER: TODO: type description here. KGROUP: TODO: type description here. KCOMPUTER: TODO: type description here. KWELLKNOWNPRINCIPAL: TODO: type description here. """ KUSER = 'kUser' KGROUP = 'kGroup' KCOMPUTER = 'kComputer' KWELLKNOWNPRINCIPAL = 'kWellKnownPrincipal'