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
@@ -123,7 +123,7 @@ For more information, see [Lock resources with Azure Resource Manager](lock-reso
123
123
124
124
## Tag resources
125
125
126
-
Tagging helps organizing your resource group and resources logically. For information, see [Using tags to organize your Azure resources](tag-resources-powershell.md).
126
+
Tagging helps you organize your resource group and resources logically. For information, see [Using tags to organize your Azure resources](tag-resources-powershell.md).
@@ -242,7 +242,7 @@ For more information, see [Lock resources with Azure Resource Manager](lock-reso
242
242
243
243
## Tag resources
244
244
245
-
Tagging helps organizing your resource group and resources logically. For information, see [Using tags to organize your Azure resources](tag-resources-python.md).
245
+
Tagging helps you organize your resource group and resources logically. For information, see [Using tags to organize your Azure resources](tag-resources-python.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/management/manage-resources-rest.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Manage resources - REST
3
3
description: Use REST operations with Azure Resource Manager to manage your resources. Shows how to read, deploy, and delete resources.
4
4
ms.topic: conceptual
5
5
ms.custom: devx-track-arm-template
6
-
ms.date: 09/26/2024
6
+
ms.date: 02/10/2025
7
7
---
8
8
9
9
# Manage Azure resources by using the REST API
@@ -12,11 +12,11 @@ Learn how to use the REST API for [Azure Resource Manager](overview.md) to manag
12
12
13
13
## Obtain an access token
14
14
15
-
To make a REST API call to Azure, you first need to obtain an access token. Include this access token in the headers of your Azure REST API calls using the "Authorization" header and setting the value to "Bearer {access-token}".
15
+
To make a REST API call to Azure, you first need to obtain an access token. Include this access token in the headers of your Azure REST API calls using the `Authorization` header and setting the value to `Bearer {access-token}`.
16
16
17
17
If you need to programmatically retrieve new tokens as part of your application, you can obtain an access token by [Registering your client application with Microsoft Entra ID](/rest/api/azure/#register-your-client-application-with-azure-ad).
18
18
19
-
If you're getting started and want to test Azure REST APIs using your individual token, you can retrieve your current access token quickly with either Azure PowerShell or Azure CLI.
19
+
To test Azure REST APIs using your individual token, retrieve your current access token with either Azure PowerShell or Azure CLI.
For the REST APIs, the value of `uri` can't be a local file or a file that is only available on your local network. Azure Resource Manager must be able to access the template. Provide a URI value that downloadable as HTTP or HTTPS.
127
+
For the REST APIs, the value of `uri` can't be a local file or a file that is only available on your local network. Azure Resource Manager must access the template. Provide a URI value that is downloadable as HTTP or HTTPS.
128
128
For more information, see [Deploy resources with Resource Manager templates and Azure PowerShell](../templates/deploy-powershell.md).
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/management/microsoft-resources-move-regions.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
title: Move regions for resources in Microsoft.Resources
3
3
description: Show how to move resources that are in the Microsoft.Resources namespace to new regions.
4
4
ms.topic: conceptual
5
-
ms.date: 09/26/2024
5
+
ms.date: 02/10/2025
6
6
---
7
7
8
8
# Move Microsoft.Resources resources to new region
9
9
10
-
You may need to move an existing resource to a new region. This article shows how to move two resource types - templateSpecs and deploymentScripts - that are in the Microsoft.Resources namespace.
10
+
You might need to move an existing resource to a new region. This article shows how to move two resource types - templateSpecs and deploymentScripts - that are in the Microsoft.Resources namespace.
11
11
12
12
## Move template specs to new region
13
13
@@ -65,19 +65,19 @@ If you have a [template spec](../templates/template-specs.md) in one region and
65
65
66
66
1.[Export the template](../templates/export-template-portal.md). When exporting, select the deployment script and any other required resources.
67
67
68
-
1.In the exported template, delete the following properties:
68
+
1.Delete the following properties in the exported template:
69
69
70
70
* tenantId
71
71
* principalId
72
72
* clientId
73
73
74
-
1.The exported template has a hardcoded value for the region of the deployment script.
74
+
1.Find the hardcoded value for the region of the deployment script.
75
75
76
76
```json
77
77
"location": "westus2",
78
78
```
79
79
80
-
Change the template to allow a parameter for setting the location. For more information, see [Set resource location in ARM template](../templates/resource-location.md)
80
+
Change the template to allow a parameter for setting the location. For more information, see [Set resource location in ARM template](../templates/resource-location.md).
0 commit comments