Share via


RunbookParameter Constructors

Definition

Overloads

RunbookParameter()

Initializes a new instance of the RunbookParameter class.

RunbookParameter(String, Nullable<Boolean>, Nullable<Int32>, String)

Initializes a new instance of the RunbookParameter class.

RunbookParameter()

Initializes a new instance of the RunbookParameter class.

public RunbookParameter ();
Public Sub New ()

Applies to

RunbookParameter(String, Nullable<Boolean>, Nullable<Int32>, String)

Initializes a new instance of the RunbookParameter class.

public RunbookParameter (string type = default, bool? isMandatory = default, int? position = default, string defaultValue = default);
new Microsoft.Azure.Management.Automation.Models.RunbookParameter : string * Nullable<bool> * Nullable<int> * string -> Microsoft.Azure.Management.Automation.Models.RunbookParameter
Public Sub New (Optional type As String = Nothing, Optional isMandatory As Nullable(Of Boolean) = Nothing, Optional position As Nullable(Of Integer) = Nothing, Optional defaultValue As String = Nothing)

Parameters

type
String

Gets or sets the type of the parameter.

isMandatory
Nullable<Boolean>

Gets or sets a Boolean value to indicate whether the parameter is mandatory or not.

position
Nullable<Int32>

Get or sets the position of the parameter.

defaultValue
String

Gets or sets the default value of parameter.

Applies to