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
The following fields are returned by SELECT
queries:
- list
The operation was successful. The response contains the list of IP addresses.
Name | Datatype | Description |
---|---|---|
nextLink | string | The continuation token. |
nodes | array | The collection of returned AmlCompute nodes details. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , workspaceName , computeName | Get 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.
Name | Datatype | Description |
---|---|---|
computeName | string | Name of the Azure Machine Learning compute. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | Azure Machine Learning Workspace Name |
SELECT
examples
- list
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
;