Share via


VariableCreateOrUpdateParameters Constructors

Definition

Overloads

VariableCreateOrUpdateParameters()

Initializes a new instance of the VariableCreateOrUpdateParameters class.

VariableCreateOrUpdateParameters(String, VariableCreateOrUpdateProperties)
VariableCreateOrUpdateParameters(String, String, String, Nullable<Boolean>)

Initializes a new instance of the VariableCreateOrUpdateParameters class.

VariableCreateOrUpdateParameters()

Initializes a new instance of the VariableCreateOrUpdateParameters class.

public VariableCreateOrUpdateParameters ();
Public Sub New ()

Applies to

VariableCreateOrUpdateParameters(String, VariableCreateOrUpdateProperties)

public VariableCreateOrUpdateParameters (string name, Microsoft.Azure.Management.Automation.Models.VariableCreateOrUpdateProperties properties);
new Microsoft.Azure.Management.Automation.Models.VariableCreateOrUpdateParameters : string * Microsoft.Azure.Management.Automation.Models.VariableCreateOrUpdateProperties -> Microsoft.Azure.Management.Automation.Models.VariableCreateOrUpdateParameters
Public Sub New (name As String, properties As VariableCreateOrUpdateProperties)

Parameters

name
String

Applies to

VariableCreateOrUpdateParameters(String, String, String, Nullable<Boolean>)

Initializes a new instance of the VariableCreateOrUpdateParameters class.

public VariableCreateOrUpdateParameters (string name, string value = default, string description = default, bool? isEncrypted = default);
new Microsoft.Azure.Management.Automation.Models.VariableCreateOrUpdateParameters : string * string * string * Nullable<bool> -> Microsoft.Azure.Management.Automation.Models.VariableCreateOrUpdateParameters
Public Sub New (name As String, Optional value As String = Nothing, Optional description As String = Nothing, Optional isEncrypted As Nullable(Of Boolean) = Nothing)

Parameters

name
String

Gets or sets the name of the variable.

value
String

Gets or sets the value of the variable.

description
String

Gets or sets the description of the variable.

isEncrypted
Nullable<Boolean>

Gets or sets the encrypted flag of the variable.

Applies to