compute_nodes
Creates, updates, deletes, gets or lists a compute_nodes
resource.
Overview
Name | compute_nodes |
Type | Resource |
Id | azure.ml_services.compute_nodes |
Fields
Name | Datatype | Description |
---|---|---|
nextLink | string | The continuation token. |
nodes | array | The collection of returned AmlCompute nodes details. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | computeName, resourceGroupName, subscriptionId, workspaceName | Get 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 }}';