Share via


IContainerGroup.ExecuteCommandAsync Method

Definition

Starts the exec command for a specific container instance within the container group.

public System.Threading.Tasks.Task<Microsoft.Azure.Management.ContainerInstance.Fluent.IContainerExecResponse> ExecuteCommandAsync (string containerName, string command, int row, int column, System.Threading.CancellationToken cancellationToken = default);
abstract member ExecuteCommandAsync : string * string * int * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.ContainerInstance.Fluent.IContainerExecResponse>
Public Function ExecuteCommandAsync (containerName As String, command As String, row As Integer, column As Integer, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IContainerExecResponse)

Parameters

containerName
String

The container instance name.

command
String

The command to be executed.

row
Int32

The row size of the terminal.

column
Int32

The column size of the terminal.

cancellationToken
CancellationToken

Returns

Applies to