Share via


SymmetricEncryptedSecret Constructors

Definition

Overloads

SymmetricEncryptedSecret()

Initializes a new instance of the SymmetricEncryptedSecret class.

SymmetricEncryptedSecret(String, EncryptionAlgorithm, String)

Initializes a new instance of the SymmetricEncryptedSecret class.

SymmetricEncryptedSecret()

Initializes a new instance of the SymmetricEncryptedSecret class.

public SymmetricEncryptedSecret ();
Public Sub New ()

Applies to

SymmetricEncryptedSecret(String, EncryptionAlgorithm, String)

Initializes a new instance of the SymmetricEncryptedSecret class.

public SymmetricEncryptedSecret (string value, Microsoft.Azure.Management.StorSimple8000Series.Models.EncryptionAlgorithm encryptionAlgorithm, string valueCertificateThumbprint = default);
new Microsoft.Azure.Management.StorSimple8000Series.Models.SymmetricEncryptedSecret : string * Microsoft.Azure.Management.StorSimple8000Series.Models.EncryptionAlgorithm * string -> Microsoft.Azure.Management.StorSimple8000Series.Models.SymmetricEncryptedSecret
Public Sub New (value As String, encryptionAlgorithm As EncryptionAlgorithm, Optional valueCertificateThumbprint As String = Nothing)

Parameters

value
String

The value of the secret itself. If the secret is in plaintext or null then EncryptionAlgorithm will be none.

encryptionAlgorithm
EncryptionAlgorithm

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

valueCertificateThumbprint
String

The thumbprint of the cert that was used to encrypt "Value".

Applies to