SecretSetParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SecretSetParameters() |
Initializes a new instance of the SecretSetParameters class. |
SecretSetParameters(String, IDictionary<String,String>, String, SecretAttributes) |
Initializes a new instance of the SecretSetParameters class. |
SecretSetParameters()
- Source:
- SecretSetParameters.cs
Initializes a new instance of the SecretSetParameters class.
public SecretSetParameters ();
Public Sub New ()
Applies to
SecretSetParameters(String, IDictionary<String,String>, String, SecretAttributes)
- Source:
- SecretSetParameters.cs
Initializes a new instance of the SecretSetParameters class.
public SecretSetParameters (string value, System.Collections.Generic.IDictionary<string,string> tags = default, string contentType = default, Microsoft.Azure.KeyVault.Models.SecretAttributes secretAttributes = default);
new Microsoft.Azure.KeyVault.Models.SecretSetParameters : string * System.Collections.Generic.IDictionary<string, string> * string * Microsoft.Azure.KeyVault.Models.SecretAttributes -> Microsoft.Azure.KeyVault.Models.SecretSetParameters
Public Sub New (value As String, Optional tags As IDictionary(Of String, String) = Nothing, Optional contentType As String = Nothing, Optional secretAttributes As SecretAttributes = Nothing)
Parameters
- value
- String
The value of the secret.
- tags
- IDictionary<String,String>
Application specific metadata in the form of key-value pairs.
- contentType
- String
Type of the secret value such as a password.
- secretAttributes
- SecretAttributes
The secret management attributes.
Applies to
Azure SDK for .NET