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

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTcomputeName, resourceGroupName, subscriptionId, workspaceNameGet the details (e.g IP address, port etc) of all the compute nodes in the compute.

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 computeName = '{{ computeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';