Machines interface

Interface representing a Machines.

Methods

get(string, string, string, string, MachinesGetOptionalParams)

Get a specific machine in the specified agent pool.

list(string, string, string, MachinesListOptionalParams)

Gets a list of machines in the specified agent pool.

Method Details

get(string, string, string, string, MachinesGetOptionalParams)

Get a specific machine in the specified agent pool.

function get(resourceGroupName: string, resourceName: string, agentPoolName: string, machineName: string, options?: MachinesGetOptionalParams): Promise<Machine>

Parameters

resourceGroupName

string

The name of the resource group. The name is case insensitive.

resourceName

string

The name of the managed cluster resource.

agentPoolName

string

The name of the agent pool.

machineName

string

host name of the machine

options
MachinesGetOptionalParams

The options parameters.

Returns

Promise<Machine>

list(string, string, string, MachinesListOptionalParams)

Gets a list of machines in the specified agent pool.

function list(resourceGroupName: string, resourceName: string, agentPoolName: string, options?: MachinesListOptionalParams): PagedAsyncIterableIterator<Machine, Machine[], PageSettings>

Parameters

resourceGroupName

string

The name of the resource group. The name is case insensitive.

resourceName

string

The name of the managed cluster resource.

agentPoolName

string

The name of the agent pool.

options
MachinesListOptionalParams

The options parameters.

Returns