RunbookParameter 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
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.
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