Skip to content

Commit 68d0c68

Browse files
authored
Incorrect parameter name
Parameter for workspace name should be -n, not -w. Current command sample will fail because of the missing workspace name parameter.
1 parent 80da850 commit 68d0c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-configure-network-isolation-with-v2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ The Azure CLI [extension v1 for machine learning](./v1/reference-azure-machine-l
105105
> The `v1-legacy-mode` parameter is only available in version 1.41.0 or newer of the Azure CLI extension for machine learning v1 (`azure-cli-ml`). Use the `az version` command to view version information.
106106
107107
```azurecli
108-
az ml workspace update -g <myresourcegroup> -w <myworkspace> --v1-legacy-mode False
108+
az ml workspace update -g <myresourcegroup> -n <myworkspace> --v1-legacy-mode False
109109
```
110110

111111
The return value of the `az ml workspace update` command may not show the updated value. To view the current state of the parameter, use the following command:
112112

113113
```azurecli
114-
az ml workspace show -g <myresourcegroup> -w <myworkspace> --query v1LegacyMode
114+
az ml workspace show -g <myresourcegroup> -n <myworkspace> --query v1LegacyMode
115115
```
116116

117117
---

0 commit comments

Comments
 (0)