load_workspace_from_config {azuremlsdk} | R Documentation |
Load workspace configuration details from a config file
Description
Returns a Workspace
object for an existing Azure Machine Learning
workspace by reading the workspace configuration from a file. The method
provides a simple way of reusing the same workspace across multiple files or
projects. Users can save the workspace ARM properties using
write_workspace_config()
, and use this method to load the same workspace
in different files or projects without retyping the workspace ARM properties.
Usage
load_workspace_from_config(path = NULL, file_name = NULL)
Arguments
path |
A string of the path to the config file or starting directory for search. The parameter defaults to starting the search in the current directory. |
file_name |
A string that will override the config file name to search for when path is a directory path. |
Value
The Workspace
object.
See Also
[Package azuremlsdk version 1.10.0 Index]