You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-central/core/howto-manage-iot-central-from-cli.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ az extension add --name azure-iot
37
37
38
38
## Create an application
39
39
40
-
Use the [az iotcentral app create](/cli/azure/iotcentral/app#az-iotcentral-app-create) command to create an IoT Central application in your Azure subscription. For example:
40
+
Use the [az iot central app create](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-create) command to create an IoT Central application in your Azure subscription. For example:
41
41
42
42
```azurecli-interactive
43
43
# Create a resource group for the IoT Central application
@@ -47,14 +47,14 @@ az group create --location "East US" \
These commands first create a resource group in the east US region for the application. The following table describes the parameters used with the **az iotcentral app create** command:
57
+
These commands first create a resource group in the east US region for the application. The following table describes the parameters used with the **az iot central app create** command:
58
58
59
59
| Parameter | Description |
60
60
| ----------------- | ----------- |
@@ -70,24 +70,24 @@ These commands first create a resource group in the east US region for the appli
70
70
71
71
## View your applications
72
72
73
-
Use the [az iotcentral app list](/cli/azure/iotcentral/app#az-iotcentral-app-list) command to list your IoT Central applications and view metadata.
73
+
Use the [az iot central app list](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-list) command to list your IoT Central applications and view metadata.
74
74
75
75
## Modify an application
76
76
77
-
Use the [az iotcentral app update](/cli/azure/iotcentral/app#az-iotcentral-app-update) command to update the metadata of an IoT Central application. For example, to change the display name of your application:
77
+
Use the [az iot central app update](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-update) command to update the metadata of an IoT Central application. For example, to change the display name of your application:
78
78
79
79
```azurecli-interactive
80
-
az iotcentral app update --name myiotcentralapp \
80
+
az iot central app update --name myiotcentralapp \
81
81
--resource-group MyIoTCentralResourceGroup \
82
82
--set displayName="My new display name"
83
83
```
84
84
85
85
## Remove an application
86
86
87
-
Use the [az iotcentral app delete](/cli/azure/iotcentral/app#az-iotcentral-app-delete) command to delete an IoT Central application. For example:
87
+
Use the [az iot central app delete](/cli/azure/iot/central/app?view=azure-cli-latest#az-iot-central-app-delete) command to delete an IoT Central application. For example:
88
88
89
89
```azurecli-interactive
90
-
az iotcentral app delete --name myiotcentralapp \
90
+
az iot central app delete --name myiotcentralapp \
0 commit comments