Share via


ClientCertificate Constructors

Definition

Overloads

ClientCertificate()

Initializes a new instance of the ClientCertificate class.

ClientCertificate(Boolean, String, String, String)

Initializes a new instance of the ClientCertificate class.

ClientCertificate()

Initializes a new instance of the ClientCertificate class.

public ClientCertificate ();
Public Sub New ()

Applies to

ClientCertificate(Boolean, String, String, String)

Initializes a new instance of the ClientCertificate class.

public ClientCertificate (bool isAdmin, string thumbprint = default, string commonName = default, string issuerThumbprint = default);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate : bool * string * string * string -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ClientCertificate
Public Sub New (isAdmin As Boolean, Optional thumbprint As String = Nothing, Optional commonName As String = Nothing, Optional issuerThumbprint As String = Nothing)

Parameters

isAdmin
Boolean

Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.

thumbprint
String

Certificate thumbprint.

commonName
String

Certificate common name.

issuerThumbprint
String

Issuer thumbprint for the certificate. Only used together with CommonName.

Applies to