Share via


Variable Constructors

Definition

Overloads

Variable()

Initializes a new instance of the Variable class.

Variable(String, String, String, String, Nullable<Boolean>, DateTimeOffset, DateTimeOffset, String)

Initializes a new instance of the Variable class.

Variable()

Initializes a new instance of the Variable class.

public Variable ();
Public Sub New ()

Applies to

Variable(String, String, String, String, Nullable<Boolean>, DateTimeOffset, DateTimeOffset, String)

Initializes a new instance of the Variable class.

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

Parameters

id
String

Fully qualified resource Id for the resource

name
String

The name of the resource

type
String

The type of the resource.

value
String

Gets or sets the value of the variable.

isEncrypted
Nullable<Boolean>

Gets or sets the encrypted flag of the variable.

creationTime
DateTimeOffset

Gets or sets the creation time.

lastModifiedTime
DateTimeOffset

Gets or sets the last modified time.

description
String

Gets or sets the description.

Applies to