RunCommandInput 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
RunCommandInput() |
Initializes a new instance of the RunCommandInput class. |
RunCommandInput(String, IList<String>, IList<RunCommandInputParameter>) |
Initializes a new instance of the RunCommandInput class. |
RunCommandInput()
Initializes a new instance of the RunCommandInput class.
public RunCommandInput ();
Public Sub New ()
Applies to
RunCommandInput(String, IList<String>, IList<RunCommandInputParameter>)
Initializes a new instance of the RunCommandInput class.
public RunCommandInput (string commandId, System.Collections.Generic.IList<string> script = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Fluent.Models.RunCommandInputParameter> parameters = default);
new Microsoft.Azure.Management.Compute.Fluent.Models.RunCommandInput : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Fluent.Models.RunCommandInputParameter> -> Microsoft.Azure.Management.Compute.Fluent.Models.RunCommandInput
Public Sub New (commandId As String, Optional script As IList(Of String) = Nothing, Optional parameters As IList(Of RunCommandInputParameter) = Nothing)
Parameters
- commandId
- String
The run command id.
Optional. The script to be executed. When this value is given, the given script will override the default script of the command.
- parameters
- IList<RunCommandInputParameter>
The run command parameters.
Applies to
Azure SDK for .NET