KeyImportParameters Constructors

Definition

Overloads

KeyImportParameters()

Initializes a new instance of the KeyImportParameters class.

KeyImportParameters(JsonWebKey, Nullable<Boolean>, KeyAttributes, IDictionary<String,String>)

Initializes a new instance of the KeyImportParameters class.

KeyImportParameters()

Source:
KeyImportParameters.cs

Initializes a new instance of the KeyImportParameters class.

public KeyImportParameters ();
Public Sub New ()

Applies to

KeyImportParameters(JsonWebKey, Nullable<Boolean>, KeyAttributes, IDictionary<String,String>)

Source:
KeyImportParameters.cs

Initializes a new instance of the KeyImportParameters class.

public KeyImportParameters (Microsoft.Azure.KeyVault.WebKey.JsonWebKey key, bool? hsm = default, Microsoft.Azure.KeyVault.Models.KeyAttributes keyAttributes = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.KeyVault.Models.KeyImportParameters : Microsoft.Azure.KeyVault.WebKey.JsonWebKey * Nullable<bool> * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.KeyImportParameters
Public Sub New (key As JsonWebKey, Optional hsm As Nullable(Of Boolean) = Nothing, Optional keyAttributes As KeyAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

key
JsonWebKey

The Json web key

hsm
Nullable<Boolean>

Whether to import as a hardware key (HSM) or software key.

keyAttributes
KeyAttributes

The key management attributes.

tags
IDictionary<String,String>

Application specific metadata in the form of key-value pairs.

Applies to