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/azure-resource-manager/management/control-plane-and-data-plane.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
@@ -1,9 +1,9 @@
1
1
---
2
2
title: Control plane and data plane operations
3
-
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.
3
+
description: Describes the difference between control plane and data plane operations. Azure Resource Manager handles control plane operations. A service handles data plane operations.
4
4
ms.topic: conceptual
5
5
ms.custom: devx-track-arm-template
6
-
ms.date: 09/26/2024
6
+
ms.date: 01/23/2025
7
7
---
8
8
9
9
# Azure control plane and data plane
@@ -16,9 +16,9 @@ For example:
16
16
17
17
* You create a virtual machine through the control plane. After the virtual machine is created, you interact with it through data plane operations, such as Remote Desktop Protocol (RDP).
18
18
19
-
* You create a storage account through the control plane. You use the data plane to read and write data in the storage account.
19
+
* You create a storage account through the control plane. Use the data plane to read and write data in the storage account.
20
20
21
-
* You create an Azure Cosmos DB database through the control plane. To query data in the Azure Cosmos DB database, you use the data plane.
21
+
* You create an Azure Cosmos DB database through the control plane. To query data in the Azure Cosmos DB database, use the data plane.
22
22
23
23
## Control plane
24
24
@@ -35,16 +35,16 @@ To discover which operations use the Azure Resource Manager URL, see the [Azure
35
35
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/databases/{databaseName}?api-version=2017-12-01
36
36
```
37
37
38
-
Azure Resource Manager handles all control plane requests. It automatically applies the Azure features you've implemented to manage your resources, such as:
38
+
Azure Resource Manager handles all control plane requests. It automatically applies the Azure features you implemented to manage your resources, such as:
39
39
40
40
*[Azure role-based access control (Azure RBAC)](../../role-based-access-control/overview.md)
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.
45
+
After Azure Resource Manager authenticates the request, it sends the request 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.
46
46
47
-
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.
47
+
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 about creating identical resources.
48
48
49
49
## Data plane
50
50
@@ -54,7 +54,7 @@ Requests for data plane operations are sent to an endpoint that's specific to yo
54
54
POST {Endpoint}/text/analytics/v2.0/languages
55
55
```
56
56
57
-
Data plane operations aren't limited to REST API. They may require other credentials such as logging in to a virtual machine or database server.
57
+
Data plane operations aren't limited to REST API. They might require other credentials, such as logging in to a virtual machine or database server.
58
58
59
59
Features that enforce management and governance might not apply to data plane operations. You need to consider the different ways users interact with your solutions. For example, a lock that prevents users from deleting a database doesn't prevent users from deleting data through queries.
0 commit comments