你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RunCommandInput 构造函数

定义

重载

RunCommandInput()

初始化 RunCommandInput 类的新实例。

RunCommandInput(String, IList<String>, IList<RunCommandInputParameter>)

初始化 RunCommandInput 类的新实例。

RunCommandInput()

初始化 RunCommandInput 类的新实例。

public RunCommandInput ();
Public Sub New ()

适用于

RunCommandInput(String, IList<String>, IList<RunCommandInputParameter>)

初始化 RunCommandInput 类的新实例。

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)

参数

commandId
String

运行命令 ID。

script
IList<String>

可选。 要执行的脚本。 给定此值后,给定的脚本将替代命令的默认脚本。

parameters
IList<RunCommandInputParameter>

运行命令参数。

适用于