Share via


AsymmetricEncryptedSecret Constructors

Definition

Overloads

AsymmetricEncryptedSecret()

Initializes a new instance of the AsymmetricEncryptedSecret class.

AsymmetricEncryptedSecret(String, String, String)

Initializes a new instance of the AsymmetricEncryptedSecret class.

AsymmetricEncryptedSecret()

Initializes a new instance of the AsymmetricEncryptedSecret class.

public AsymmetricEncryptedSecret ();
Public Sub New ()

Applies to

AsymmetricEncryptedSecret(String, String, String)

Initializes a new instance of the AsymmetricEncryptedSecret class.

public AsymmetricEncryptedSecret (string value, string encryptionAlgorithm, string encryptionCertThumbprint = default);
new Microsoft.Azure.Management.EdgeGateway.Models.AsymmetricEncryptedSecret : string * string * string -> Microsoft.Azure.Management.EdgeGateway.Models.AsymmetricEncryptedSecret
Public Sub New (value As String, encryptionAlgorithm As String, Optional encryptionCertThumbprint As String = Nothing)

Parameters

value
String

The value of the secret.

encryptionAlgorithm
String

The algorithm used to encrypt "Value". Possible values include: 'None', 'AES256', 'RSAES_PKCS1_v_1_5'

encryptionCertThumbprint
String

Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.

Applies to