Share via


CertificateCreateOrUpdateParameters Constructors

Definition

Overloads

CertificateCreateOrUpdateParameters()

Initializes a new instance of the CertificateCreateOrUpdateParameters class.

CertificateCreateOrUpdateParameters(String, CertificateCreateOrUpdateProperties)
CertificateCreateOrUpdateParameters(String, String, String, String, Boolean)

Initializes a new instance of the CertificateCreateOrUpdateParameters class.

CertificateCreateOrUpdateParameters()

Initializes a new instance of the CertificateCreateOrUpdateParameters class.

public CertificateCreateOrUpdateParameters ();
Public Sub New ()

Applies to

CertificateCreateOrUpdateParameters(String, CertificateCreateOrUpdateProperties)

public CertificateCreateOrUpdateParameters (string name, Microsoft.Azure.Management.Automation.Models.CertificateCreateOrUpdateProperties properties);
new Microsoft.Azure.Management.Automation.Models.CertificateCreateOrUpdateParameters : string * Microsoft.Azure.Management.Automation.Models.CertificateCreateOrUpdateProperties -> Microsoft.Azure.Management.Automation.Models.CertificateCreateOrUpdateParameters
Public Sub New (name As String, properties As CertificateCreateOrUpdateProperties)

Parameters

name
String

Applies to

CertificateCreateOrUpdateParameters(String, String, String, String, Boolean)

Initializes a new instance of the CertificateCreateOrUpdateParameters class.

public CertificateCreateOrUpdateParameters (string name, string base64Value, string description = default, string thumbprint = default, bool isExportable = false);
new Microsoft.Azure.Management.Automation.Models.CertificateCreateOrUpdateParameters : string * string * string * string * bool -> Microsoft.Azure.Management.Automation.Models.CertificateCreateOrUpdateParameters
Public Sub New (name As String, base64Value As String, Optional description As String = Nothing, Optional thumbprint As String = Nothing, Optional isExportable As Boolean = false)

Parameters

name
String

Gets or sets the name of the certificate.

base64Value
String

Gets or sets the base64 encoded value of the certificate.

description
String

Gets or sets the description of the certificate.

thumbprint
String

Gets or sets the thumbprint of the certificate.

isExportable
Boolean

Gets or sets the is exportable flag of the certificate.

Applies to