Source code for models_v2.certificate_mapping_enum

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

[docs]class CertificateMappingEnum(object): """Implementation of the 'CertificateMapping' enum. Specifies the field to be used in certificate for authentication. Attributes: COMMONNAME: TODO: type description here. EMAILADDRESS: TODO: type description here. USERPRINCIPALNAME: TODO: type description here. """ COMMONNAME = 'CommonName' EMAILADDRESS = 'EmailAddress' USERPRINCIPALNAME = 'UserPrincipalName'