Source code for models.object_class_active_directory_principals_add_parameters_enum

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

[docs]class ObjectClassActiveDirectoryPrincipalsAddParametersEnum(object): """Implementation of the 'ObjectClass_ActiveDirectoryPrincipalsAddParameters' enum. Specifies the type of the referenced Active Directory principal. If 'kGroup', the referenced Active Directory principal is a group. If 'kUser', the referenced Active Directory principal is a user. 'kUser' specifies a user object class. 'kGroup' specifies a group object class. 'kComputer' specifies a computer object class. 'kWellKnownPrincipal' specifies a well known principal. 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'