Class CreateTlsClientAuthCredentials
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Structure for creating a new client credential using TLS Client Auth.
public class CreateTlsClientAuthCredentials
- Inheritance
-
CreateTlsClientAuthCredentials
- Inherited Members
Properties
CredentialType
Possible values: [cert_subject_dn]
[JsonProperty("credential_type")]
public string CredentialType { get; set; }
Property Value
Name
The name of the credential
[JsonProperty("name")]
public string Name { get; set; }
Property Value
Pem
PEM-formatted X509 certificate. Must be JSON escaped. Mutually exclusive with subject_dn property.
[JsonProperty("pem")]
public string Pem { get; set; }
Property Value
SubjectDistinguishedName
Subject Distinguished Name. Mutually exclusive with pem property.
[JsonProperty("subject_dn")]
public string SubjectDistinguishedName { get; set; }