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.Models.RunCommandInputParameter> parameters = default);
new Microsoft.Azure.Management.Compute.Models.RunCommandInput : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.RunCommandInputParameter> -> Microsoft.Azure.Management.Compute.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>

run コマンド パラメーター。

適用対象