NamedValueUpdateParameters Constructors

Definition

Overloads

NamedValueUpdateParameters()

Initializes a new instance of the NamedValueUpdateParameters class.

NamedValueUpdateParameters(IList<String>, Nullable<Boolean>, String, String, KeyVaultContractCreateProperties)

Initializes a new instance of the NamedValueUpdateParameters class.

NamedValueUpdateParameters()

Initializes a new instance of the NamedValueUpdateParameters class.

public NamedValueUpdateParameters ();
Public Sub New ()

Applies to

NamedValueUpdateParameters(IList<String>, Nullable<Boolean>, String, String, KeyVaultContractCreateProperties)

Initializes a new instance of the NamedValueUpdateParameters class.

public NamedValueUpdateParameters (System.Collections.Generic.IList<string> tags = default, bool? secret = default, string displayName = default, string value = default, Microsoft.Azure.Management.ApiManagement.Models.KeyVaultContractCreateProperties keyVault = default);
new Microsoft.Azure.Management.ApiManagement.Models.NamedValueUpdateParameters : System.Collections.Generic.IList<string> * Nullable<bool> * string * string * Microsoft.Azure.Management.ApiManagement.Models.KeyVaultContractCreateProperties -> Microsoft.Azure.Management.ApiManagement.Models.NamedValueUpdateParameters
Public Sub New (Optional tags As IList(Of String) = Nothing, Optional secret As Nullable(Of Boolean) = Nothing, Optional displayName As String = Nothing, Optional value As String = Nothing, Optional keyVault As KeyVaultContractCreateProperties = Nothing)

Parameters

tags
IList<String>

Optional tags that when provided can be used to filter the NamedValue list.

secret
Nullable<Boolean>

Determines whether the value is a secret and should be encrypted or not. Default value is false.

displayName
String

Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.

value
String

Value of the NamedValue. Can contain policy expressions. It may not be empty or consist only of whitespace.

keyVault
KeyVaultContractCreateProperties

KeyVault location details of the namedValue.

Applies to