Share via


SecretUpdateParameters Constructors

Definition

Overloads

SecretUpdateParameters()

Initializes a new instance of the SecretUpdateParameters class.

SecretUpdateParameters(String, SecretAttributes, IDictionary<String,String>)

Initializes a new instance of the SecretUpdateParameters class.

SecretUpdateParameters()

Source:
SecretUpdateParameters.cs

Initializes a new instance of the SecretUpdateParameters class.

public SecretUpdateParameters ();
Public Sub New ()

Applies to

SecretUpdateParameters(String, SecretAttributes, IDictionary<String,String>)

Source:
SecretUpdateParameters.cs

Initializes a new instance of the SecretUpdateParameters class.

public SecretUpdateParameters (string contentType = default, Microsoft.Azure.KeyVault.Models.SecretAttributes secretAttributes = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.KeyVault.Models.SecretUpdateParameters : string * Microsoft.Azure.KeyVault.Models.SecretAttributes * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.KeyVault.Models.SecretUpdateParameters
Public Sub New (Optional contentType As String = Nothing, Optional secretAttributes As SecretAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

contentType
String

Type of the secret value such as a password.

secretAttributes
SecretAttributes

The secret management attributes.

tags
IDictionary<String,String>

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

Applies to