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
title: List of built-in policy definitions for Azure Arc for servers
3
+
description: Lists Azure Policy built-in policy definitions for Azure Arc for servers. These built-ins provide common approaches to managing your Azure resources.
4
+
ms.date: 04/30/2020
5
+
ms.topic: sample
6
+
ms.service: azure-arc
7
+
ms.subservice: azure-arc-servers
8
+
author: mgoedtel
9
+
ms.author: magoedte
10
+
ms.custom: subject-policy-samples
11
+
---
12
+
# Azure Policy built-in policy definitions for Azure Arc for servers
13
+
14
+
This page is an index of [Azure Policy](../../governance/policy/overview.md) built-in policy
15
+
definitions for Azure Arc for servers. For additional Azure Policy built-ins for other services,
16
+
see [Azure Policy built-in definitions](../../governance/policy/samples/built-in-policies.md).
17
+
18
+
The name of each built-in links to the policy definition in Azure portal. Use the link in the
Copy file name to clipboardExpand all lines: articles/azure-monitor/faq.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -251,6 +251,10 @@ See the [release notes](app/release-notes.md) for the SDK appropriate to your ty
251
251
### <aname="update"></a>How can I change which Azure resource my project sends data to?
252
252
In Solution Explorer, right-click `ApplicationInsights.config` and choose **Update Application Insights**. You can send the data to an existing or new resource in Azure. The update wizard changes the instrumentation key in ApplicationInsights.config, which determines where the server SDK sends your data. Unless you deselect "Update all," it will also change the key where it appears in your web pages.
253
253
254
+
### Can I use `providers('Microsoft.Insights', 'components').apiVersions[0]` in my Azure Resource Manager deployments?
255
+
256
+
We do not recommend using this method of populating the API version. The newest version can represent preview releases which may contain breaking changes. Even with newer non-preview releases, the API versions are not always backwards compatible with existing templates, or in some cases the API version may not be available to all subscriptions.
257
+
254
258
### What is Status Monitor?
255
259
256
260
A desktop app that you can use in your IIS web server to help configure Application Insights in web apps. It doesn't collect telemetry: you can stop it when you are not configuring an app.
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