Skip to content

Commit ac486ff

Browse files
author
Larry Franks
committed
interlinking
1 parent 7fa1609 commit ac486ff

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

articles/machine-learning/how-to-manage-workspace-cli.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ ms.custom: devx-track-azurecli, cliv2, event-tier1-build-2022
2323
2424
In this article, you learn how to create and manage Azure Machine Learning workspaces using the Azure CLI. The Azure CLI provides commands for managing Azure resources and is designed to get you working quickly with Azure, with an emphasis on automation. The machine learning extension to the CLI provides commands for working with Azure Machine Learning resources.
2525

26+
You can also manage workspaces the [Azure Portal and Python SDK](how-to-manage-workspace.md), [Azure PowerShell](how-to-manage-workspace-powershell.md), or [via the VS Code extension](how-to-setup-vs-code.md).
27+
2628
## Prerequisites
2729

2830
* An **Azure subscription**. If you don't have one, try the [free or paid version of Azure Machine Learning](https://azure.microsoft.com/free/).

articles/machine-learning/how-to-manage-workspace-powershell.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ ms.custom: devx-track-azurepowershell
1717

1818
Use the Azure PowerShell module for Azure Machine Learning to create and manage your Azure Machine Learning workspaces. For a full list of the Azure PowerShell cmdlets for Azure Machine Learning, see the [Az.MachineLearningServices](/powershell/module/az.machinelearningservices) reference documentation.
1919

20+
You can also manage workspaces [using the Azure CLI](how-to-manage-workspace-cli.md), [Azure Portal and Python SDK](how-to-manage-workspace.md), or [via the VS Code extension](how-to-setup-vs-code.md).
21+
2022
## Prerequisites
2123

2224
- An **Azure subscription**. If you don't have one, try the [free or paid version of Azure Machine Learning](https://azure.microsoft.com/free/).
@@ -76,13 +78,19 @@ Use the following commands to create these resources and retrieve the Azure Reso
7678
7779
1. Create the Azure Key Vault:
7880
81+
> [!IMPORTANT]
82+
> Each key vault must have a unique name. Replace `MyKeyVault` with the name of your key vault in the following example.
83+
7984
```azurepowershell-interactive
8085
$KeyVault = 'MyKeyVault'
8186
New-AzKeyVault -Name $KeyVault -ResourceGroupName $ResourceGroup -Location $Location
8287
$kvid = (Get-AzResource -Name $KeyVault -ResourceGroupName $ResourceGroup).ResourceId
8388
8489
1. Create the Azure Storage Account:
8590
91+
> [!IMPORTANT]
92+
> Each storage account must have a unique name. Replace `MyStorage` with the name of your storage account in the following example. You can use `Get-AzStorageAccountNameAvailability -Name 'YourUniqueName'` to verify the name before running the following example.
93+
8694
```azurepowershell-interactive
8795
$Storage = 'MyStorage'
8896

articles/machine-learning/how-to-manage-workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.custom: fasttrack-edit, FY21Q4-aml-seo-hack, contperf-fy21q4, sdkv2, event-ti
2323
2424
In this article, you create, view, and delete [**Azure Machine Learning workspaces**](concept-workspace.md) for [Azure Machine Learning](overview-what-is-azure-machine-learning.md), using the [Azure portal](https://portal.azure.com) or the [SDK for Python](/python/api/overview/azure/ml/).
2525

26-
As your needs change or requirements for automation increase you can also manage workspaces [using the CLI](how-to-manage-workspace-cli.md), or [via the VS Code extension](how-to-setup-vs-code.md).
26+
As your needs change or requirements for automation increase you can also manage workspaces [using the CLI](how-to-manage-workspace-cli.md), [Azure PowerShell](how-to-manage-workspace-powershell.md), or [via the VS Code extension](how-to-setup-vs-code.md).
2727

2828
## Prerequisites
2929

0 commit comments

Comments
 (0)