get_compute {azuremlsdk}R Documentation

Get an existing compute cluster

Description

Returns an AmlCompute or AksCompute object for an existing compute resource. If the compute target doesn't exist, the function will return NULL.

Usage

get_compute(workspace, cluster_name)

Arguments

workspace

The Workspace object.

cluster_name

A string of the name of the cluster.

Value

The AmlCompute or AksCompute object.

Examples

## Not run: 
ws <- load_workspace_from_config()
compute_target <- get_compute(ws, cluster_name = 'mycluster')

## End(Not run)

[Package azuremlsdk version 1.10.0 Index]