DscConfigurationParameter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
Gets or sets a Boolean value to indicate whether the parameter is mandatory or not.
- defaultValue
- String
Gets or sets the default value of parameter.
Applies to
Azure SDK for .NET