Share via


DscConfigurationParameter Constructors

Definition

Overloads

DscConfigurationParameter()

Initializes a new instance of the DscConfigurationParameter class.

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

Initializes a new instance of the DscConfigurationParameter class.

DscConfigurationParameter()

Initializes a new instance of the DscConfigurationParameter class.

public DscConfigurationParameter ();
Public Sub New ()

Applies to

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

Initializes a new instance of the DscConfigurationParameter class.

public DscConfigurationParameter (string type = default, bool? isMandatory = default, int? position = default, string defaultValue = default);
new Microsoft.Azure.Management.Automation.Models.DscConfigurationParameter : string * Nullable<bool> * Nullable<int> * string -> Microsoft.Azure.Management.Automation.Models.DscConfigurationParameter
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