KeyBundle Constructors

Definition

Overloads

KeyBundle()

Initializes a new instance of the KeyBundle class.

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

Initializes a new instance of the KeyBundle class.

KeyBundle()

Source:
KeyBundle.cs

Initializes a new instance of the KeyBundle class.

public KeyBundle ();
Public Sub New ()

Applies to

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

Source:
KeyBundle.cs

Initializes a new instance of the KeyBundle class.

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

Parameters

key
JsonWebKey

The Json web key.

attributes
KeyAttributes

The key management attributes.

tags
IDictionary<String,String>

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

managed
Nullable<Boolean>

True if the key's lifetime is managed by key vault. If this is a key backing a certificate, then managed will be true.

Applies to