Skip to content

Commit 0d0b822

Browse files
committed
Refresh ARM management content
1 parent aae6b04 commit 0d0b822

37 files changed

+182
-126
lines changed

articles/azure-resource-manager/management/async-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Status of asynchronous operations
33
description: Describes how to track asynchronous operations in Azure. It shows the values you use to get the status of a long-running operation.
44
ms.topic: conceptual
5-
ms.date: 03/19/2024
5+
ms.date: 09/26/2024
66
---
77

88
# Track asynchronous Azure operations

articles/azure-resource-manager/management/authenticate-multi-tenant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Authenticate across tenants
33
description: Describes how Azure Resource Manager handles authentication requests across tenants.
44
ms.topic: conceptual
55
ms.custom: devx-track-arm-template
6-
ms.date: 03/19/2024
6+
ms.date: 09/26/2024
77
---
88

99
# Authenticate requests across tenants
@@ -19,7 +19,7 @@ The request has the following authentication header values:
1919
| Authorization | Primary token | Bearer <primary-token> |
2020
| x-ms-authorization-auxiliary | Auxiliary tokens | Bearer <auxiliary-token1>, EncryptedBearer <auxiliary-token2>, Bearer <auxiliary-token3> |
2121

22-
The auxiliary header can hold up to three auxiliary tokens.
22+
The auxiliary header can hold up to three auxiliary tokens.
2323

2424
In the code of your multi-tenant app, get the authentication token for other tenants and store them in the auxiliary headers. The user or application must have been invited as a guest to the other tenants.
2525

articles/azure-resource-manager/management/azure-services-resource-providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Find resource providers by Azure services
33
description: Lists all resource provider namespaces for Azure Resource Manager and shows the Azure service for that namespace.
44
ms.topic: conceptual
5-
ms.date: 11/07/2023
5+
ms.date: 09/26/2024
66
ms.custom: devx-track-arm-template
77
content_well_notification:
88
- AI-contribution

articles/azure-resource-manager/management/control-plane-and-data-plane.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Control plane and data plane operations
33
description: Describes the difference between control plane and data plane operations. Control plane operations are handled by Azure Resource Manager. Data plane operations are handled by a service.
44
ms.topic: conceptual
55
ms.custom: devx-track-arm-template
6-
ms.date: 03/19/2024
6+
ms.date: 09/26/2024
77
---
88

99
# Azure control plane and data plane
@@ -42,7 +42,7 @@ Azure Resource Manager handles all control plane requests. It automatically appl
4242
* [Management Locks](lock-resources.md)
4343
* [Activity Logs](/azure/azure-monitor/essentials/activity-log)
4444

45-
After authenticating the request, Azure Resource Manager sends it to the resource provider, which completes the operation. Even during periods of unavailability for the control plane, you can still access the data plane of your Azure resources. For instance, you can continue to access and operate on data in your storage account resource via its separate storage URI `https://myaccount.blob.core.windows.net` even when `https://management.azure.com` is not available.
45+
After authenticating the request, Azure Resource Manager sends it to the resource provider, which completes the operation. Even during periods of unavailability for the control plane, you can still access the data plane of your Azure resources. For instance, you can continue to access and operate on data in your storage account resource via its separate storage URI `https://myaccount.blob.core.windows.net` even when `https://management.azure.com` isn't available.
4646

4747
The control plane includes two scenarios for handling requests - "green field" and "brown field". Green field refers to new resources. Brown field refers to existing resources. As you deploy resources, Azure Resource Manager understands when to create new resources and when to update existing resources. You don't have to worry that identical resources will be created.
4848

articles/azure-resource-manager/management/create-private-link-access-commands.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Manage resources through private link
33
description: Restrict management access for resource to private link
44
ms.topic: conceptual
5-
ms.date: 03/19/2024
5+
ms.date: 09/26/2024
66
---
77

88
# Use APIs to create a private link for managing Azure resources
@@ -14,22 +14,29 @@ This article explains how you can use [Azure Private Link](../../private-link/in
1414
## Create resource management private link
1515

1616
To create resource management private link, send the following request:
17+
1718
# [Azure CLI](#tab/azure-cli)
19+
1820
### Example
21+
1922
```azurecli
2023
# Login first with az login if not using Cloud Shell
2124
az resourcemanagement private-link create --location WestUS --resource-group PrivateLinkTestRG --name NewRMPL
2225
```
23-
26+
2427
# [PowerShell](#tab/azure-powershell)
28+
2529
### Example
30+
2631
```azurepowershell-interactive
2732
# Login first with Connect-AzAccount if not using Cloud Shell
2833
New-AzResourceManagementPrivateLink -ResourceGroupName PrivateLinkTestRG -Name NewRMPL
2934
```
30-
35+
3136
# [REST](#tab/REST)
37+
3238
REST call
39+
3340
```http
3441
PUT
3542
https://management.azure.com/subscriptions/{subscriptionID}/resourceGroups/{resourceGroupName}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{rmplName}?api-version=2020-05-01
@@ -63,24 +70,31 @@ To create resource management private link, send the following request:
6370
Note the ID that is returned for the new resource management private link. You'll use it for creating the private link association.
6471

6572
## Create private link association
73+
6674
The resource name of a private link association resource must be a GUID, and it isn't yet supported to disable the publicNetworkAccess field.
6775

6876
To create the private link association, use:
77+
6978
# [Azure CLI](#tab/azure-cli)
79+
7080
### Example
81+
7182
```azurecli
7283
# Login first with az login if not using Cloud Shell
7384
az private-link association create --management-group-id fc096d27-0434-4460-a3ea-110df0422a2d --name 1d7942d1-288b-48de-8d0f-2d2aa8e03ad4 --privatelink "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrivateLinkTestRG/providers/Microsoft.Authorization/resourceManagementPrivateLinks/newRMPL"
7485
```
75-
86+
7687
# [PowerShell](#tab/azure-powershell)
88+
7789
### Example
90+
7891
```azurepowershell-interactive
7992
# Login first with Connect-AzAccount if not using Cloud Shell
8093
New-AzPrivateLinkAssociation -ManagementGroupId fc096d27-0434-4460-a3ea-110df0422a2d -Name 1d7942d1-288b-48de-8d0f-2d2aa8e03ad4 -PrivateLink "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrivateLinkTestRG/providers/Microsoft.Authorization/resourceManagementPrivateLinks/newRMPL" -PublicNetworkAccess enabled | fl
8194
```
82-
95+
8396
# [REST](#tab/REST)
97+
8498
REST call
8599

86100
```http
@@ -114,6 +128,7 @@ To create the private link association, use:
114128
"type": "Microsoft.Authorization/privateLinkAssociations"
115129
}
116130
```
131+
117132
---
118133

119134
## Add private endpoint

articles/azure-resource-manager/management/create-private-link-access-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create private link for managing resources - Azure portal
33
description: Use Azure portal to create private link for managing resources.
44
ms.topic: conceptual
5-
ms.date: 03/19/2024
5+
ms.date: 09/26/2024
66
---
77

88
# Use portal to create private link for managing Azure resources

articles/azure-resource-manager/management/delete-resource-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Delete resource group and resources
33
description: Describes how to delete resource groups and resources. It describes how Azure Resource Manager orders the deletion of resources when a deleting a resource group. It describes the response codes and how Resource Manager handles them to determine if the deletion succeeded.
44
ms.topic: conceptual
5-
ms.date: 09/27/2023
5+
ms.date: 09/26/2024
66
ms.custom: devx-track-arm-template
77
content_well_notification:
88
- AI-contribution

articles/azure-resource-manager/management/deployment-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Resource Manager and classic deployment
33
description: Describes the differences between the Resource Manager deployment model and the classic (or Service Management) deployment model.
44
ms.topic: conceptual
55
ms.custom: devx-track-arm-template
6-
ms.date: 03/19/2024
6+
ms.date: 09/26/2024
77
---
88

99
# Azure Resource Manager vs. classic deployment: Understand deployment models and the state of your resources

articles/azure-resource-manager/management/manage-private-link-access-commands.md

Lines changed: 41 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage resource management private links
33
description: Use APIs to manage existing resource management private links
44
ms.topic: conceptual
55
ms.custom: devx-track-azurecli, devx-track-azurepowershell
6-
ms.date: 03/19/2024
6+
ms.date: 09/26/2024
77
---
88

99
# Manage resource management private links
@@ -17,21 +17,27 @@ If you need to create a resource management private link, see [Use portal to cre
1717
To **get a specific** resource management private link, send the following request:
1818

1919
# [Azure CLI](#tab/azure-cli)
20+
2021
### Example
22+
2123
```azurecli
2224
# Login first with az login if not using Cloud Shell
2325
az resourcemanagement private-link show --resource-group PrivateLinkTestRG --name NewRMPL
2426
```
25-
27+
2628
# [PowerShell](#tab/azure-powershell)
29+
2730
### Example
31+
2832
```azurepowershell-interactive
2933
# Login first with Connect-AzAccount if not using Cloud Shell
3034
Get-AzResourceManagementPrivateLink -ResourceGroupName PrivateLinkTestRG -Name NewRMPL
3135
```
32-
36+
3337
# [REST](#tab/REST)
38+
3439
REST call
40+
3541
```http
3642
GET https://management.azure.com/subscriptions/{subscriptionID}/resourceGroups/{resourceGroupName}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{rmplName}?api-version=2020-05-01
3743
```
@@ -53,20 +59,25 @@ The operation returns:
5359
---
5460

5561
To **get all** resource management private links in a subscription, use:
62+
5663
# [Azure CLI](#tab/azure-cli)
64+
5765
```azurecli
5866
# Login first with az login if not using Cloud Shell
5967
az resourcemanagement private-link list
6068
```
61-
69+
6270
# [PowerShell](#tab/azure-powershell)
71+
6372
```azurepowershell-interactive
6473
# Login first with Connect-AzAccount if not using Cloud Shell
6574
Get-AzResourceManagementPrivateLink
6675
```
67-
76+
6877
# [REST](#tab/REST)
78+
6979
REST call
80+
7081
```http
7182
GET
7283
https://management.azure.com/subscriptions/{subscriptionID}/providers/Microsoft.Authorization/resourceManagementPrivateLinks?api-version=2020-05-01
@@ -101,21 +112,27 @@ To **get all** resource management private links in a subscription, use:
101112

102113
To **delete a specific** resource management private link, use:
103114
# [Azure CLI](#tab/azure-cli)
115+
104116
### Example
117+
105118
```azurecli
106119
# Login first with az login if not using Cloud Shell
107120
az resourcemanagement private-link delete --resource-group PrivateLinkTestRG --name NewRMPL
108121
```
109-
122+
110123
# [PowerShell](#tab/azure-powershell)
124+
111125
### Example
126+
112127
```azurepowershell-interactive
113128
# Login first with Connect-AzAccount if not using Cloud Shell
114129
Remove-AzResourceManagementPrivateLink -ResourceGroupName PrivateLinkTestRG -Name NewRMPL
115130
```
116-
131+
117132
# [REST](#tab/REST)
133+
118134
REST call
135+
119136
```http
120137
DELETE
121138
https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Authorization/resourceManagementPrivateLinks/{rmplName}?api-version=2020-05-01
@@ -128,22 +145,29 @@ To **delete a specific** resource management private link, use:
128145
## Private link association
129146

130147
To **get a specific** private link association for a management group, use:
148+
131149
# [Azure CLI](#tab/azure-cli)
150+
132151
### Example
152+
133153
```azurecli
134154
# Login first with az login if not using Cloud Shell
135155
az private-link association show --management-group-id fc096d27-0434-4460-a3ea-110df0422a2d --name 1d7942d1-288b-48de-8d0f-2d2aa8e03ad4
136156
```
137-
157+
138158
# [PowerShell](#tab/azure-powershell)
159+
139160
### Example
161+
140162
```azurepowershell-interactive
141163
# Login first with Connect-AzAccount if not using Cloud Shell
142164
Get-AzPrivateLinkAssociation -ManagementGroupId fc096d27-0434-4460-a3ea-110df0422a2d -Name 1d7942d1-288b-48de-8d0f-2d2aa8e03ad4 | fl
143165
```
144-
166+
145167
# [REST](#tab/REST)
168+
146169
REST call
170+
147171
```http
148172
GET
149173
https://management.azure.com/providers/Microsoft.Management/managementGroups/{managementGroupID}/providers/Microsoft.Authorization/privateLinkAssociations?api-version=2020-05-01
@@ -171,21 +195,27 @@ To **get a specific** private link association for a management group, use:
171195
---
172196

173197
To **delete** a private link association, use:
198+
174199
# [Azure CLI](#tab/azure-cli)
200+
175201
### Example
202+
176203
```azurecli
177204
# Login first with az login if not using Cloud Shell
178205
az private-link association delete --management-group-id 24f15700-370c-45bc-86a7-aee1b0c4eb8a --name 1d7942d1-288b-48de-8d0f-2d2aa8e03ad4
179206
```
180-
207+
181208
# [PowerShell](#tab/azure-powershell)
209+
182210
### Example
211+
183212
```azurepowershell-interactive
184213
# Login first with Connect-AzAccount if not using Cloud Shell
185214
Remove-AzPrivateLinkAssociation -ManagementGroupId 24f15700-370c-45bc-86a7-aee1b0c4eb8a -Name 1d7942d1-288b-48de-8d0f-2d2aa8e03ad4
186215
```
187-
216+
188217
# [REST](#tab/REST)
218+
189219
REST call
190220

191221
```http
@@ -197,7 +227,6 @@ The operation returns: `Status 200 OK`.
197227

198228
---
199229

200-
201230
## Next steps
202231

203232
* To learn more about private links, see [Azure Private Link](../../private-link/index.yml).

articles/azure-resource-manager/management/manage-resource-groups-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage resource groups - Azure CLI
33
description: Use Azure CLI to manage your resource groups through Azure Resource Manager. Shows how to create, list, and delete resource groups.
44
author: mumian
55
ms.topic: conceptual
6-
ms.date: 03/19/2024
6+
ms.date: 09/26/2024
77
ms.custom: devx-track-azurecli, devx-track-arm-template
88
---
99

@@ -131,13 +131,13 @@ You can apply tags to resource groups and resources to logically organize your a
131131

132132
## Export resource groups to templates
133133

134-
To assist with creating ARM templates, you can export a template from existing resources. For more information, see [Use Azure CLI to export a template](../templates/export-template-cli.md).
134+
To assist with creating ARM templates, you can export a template from existing resources. For more information, see [Use Azure CLI to export a template](../templates/export-template-cli.md).
135135

136136
## Manage access to resource groups
137137

138138
To manage access to a resource group, use [Azure role-based access control (Azure RBAC)](../../role-based-access-control/overview.md). For more information, see [Add or remove Azure role assignments using Azure CLI](../../role-based-access-control/role-assignments-cli.md).
139139

140140
## Next steps
141141

142-
- To learn Azure Resource Manager, see [Azure Resource Manager overview](overview.md).
143-
- To learn the Resource Manager template syntax, see [Understand the structure and syntax of Azure Resource Manager templates](../templates/syntax.md).
142+
* To learn Azure Resource Manager, see [Azure Resource Manager overview](overview.md).
143+
* To learn the Resource Manager template syntax, see [Understand the structure and syntax of Azure Resource Manager templates](../templates/syntax.md).

0 commit comments

Comments
 (0)