Skip to main content

compute_nodes

Creates, updates, deletes, gets or lists a compute_nodes resource.

Overview

Namecompute_nodes
TypeResource
Idazure.ml_services.compute_nodes

Fields

The following fields are returned by SELECT queries:

The operation was successful. The response contains the list of IP addresses.

NameDatatypeDescription
nextLinkstringThe continuation token.
nodesarrayThe collection of returned AmlCompute nodes details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workspaceName, computeNameGet the details (e.g IP address, port etc) of all the compute nodes in the compute.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
computeNamestringName of the Azure Machine Learning compute.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringAzure Machine Learning Workspace Name

SELECT examples

Get the details (e.g IP address, port etc) of all the compute nodes in the compute.

SELECT
nextLink,
nodes
FROM azure.ml_services.compute_nodes
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND computeName = '{{ computeName }}' -- required
;