SecretBundle Constructors

Definition

Overloads

SecretBundle()

Initializes a new instance of the SecretBundle class.

SecretBundle(String, String, String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>)

Initializes a new instance of the SecretBundle class.

SecretBundle()

Source:
SecretBundle.cs

Initializes a new instance of the SecretBundle class.

public SecretBundle ();
Public Sub New ()

Applies to

SecretBundle(String, String, String, SecretAttributes, IDictionary<String,String>, String, Nullable<Boolean>)

Source:
SecretBundle.cs

Initializes a new instance of the SecretBundle class.

public SecretBundle (string value = default, string id = default, string contentType = default, Microsoft.Azure.KeyVault.Models.SecretAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string kid = default, bool? managed = default);
new Microsoft.Azure.KeyVault.Models.SecretBundle : string * string * string * Microsoft.Azure.KeyVault.Models.SecretAttributes * System.Collections.Generic.IDictionary<string, string> * string * Nullable<bool> -> Microsoft.Azure.KeyVault.Models.SecretBundle
Public Sub New (Optional value As String = Nothing, Optional id As String = Nothing, Optional contentType As String = Nothing, Optional attributes As SecretAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional kid As String = Nothing, Optional managed As Nullable(Of Boolean) = Nothing)

Parameters

value
String

The secret value.

id
String

The secret id.

contentType
String

The content type of the secret.

attributes
SecretAttributes

The secret management attributes.

tags
IDictionary<String,String>

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

kid
String

If this is a secret backing a KV certificate, then this field specifies the corresponding key backing the KV certificate.

managed
Nullable<Boolean>

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

Applies to