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/purview/create-azure-purview-dotnet.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
1
---
2
-
title: 'Quickstart: Create Microsoft Purview Account using .NET SDK'
3
-
description: Create a Microsoft Purview Account using .NET SDK.
2
+
title: 'Quickstart: Create Microsoft Purview (formerly Azure Purview) account using .NET SDK'
3
+
description: This article will guide you through creating a Microsoft Purview (formerly Azure Purview) account using .NET SDK.
4
4
author: nayenama
5
5
ms.author: nayenama
6
6
ms.service: purview
7
7
ms.devlang: csharp
8
8
ms.topic: quickstart
9
-
ms.date: 09/27/2021
9
+
ms.date: 06/17/2022
10
10
ms.custom: mode-api
11
11
---
12
-
# Quickstart: Create a Microsoft Purview account using .NET SDK
12
+
# Quickstart: Create a Microsoft Purview (formerly Azure Purview) account using .NET SDK
13
13
14
-
In this quickstart, you'll use the [.NET SDK](/dotnet/api/overview/azure/purviewresourceprovider) to create a Microsoft Purview account.
14
+
In this quickstart, you'll use the [.NET SDK](/dotnet/api/overview/azure/purviewresourceprovider) to create a Microsoft Purview (formerly Azure Purview) account.
15
15
16
-
Microsoft Purview is a data governance service that helps you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, Microsoft Purview creates an up-to-date map of your information. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
16
+
The Microsoft Purview governance portal surfaces tools like the Microsoft Purview Data Map and Microsoft Purview Data Catalog that help you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, the Microsoft Purview Data Map creates an up-to-date map of your information. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
17
17
18
-
For more information about Microsoft Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview across your organization, [see our deployment best practices](deployment-best-practices.md).
18
+
For more information about the governance capabilities of Microsoft Purview, formerly Azure Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview across your organization, [see our deployment best practices](deployment-best-practices.md)
@@ -29,7 +29,7 @@ Download and install [Azure .NET SDK](https://azure.microsoft.com/downloads/) on
29
29
30
30
## Create an application in Azure Active Directory
31
31
32
-
1. In [Create an Azure Active Directory application](../active-directory/develop/howto-create-service-principal-portal.md#register-an-application-with-azure-ad-and-create-a-service-principal), create an application that represents the .NET application you are creating in this tutorial. For the sign-on URL, you can provide a dummy URL as shown in the article (`https://contoso.org/exampleapp`).
32
+
1. In [Create an Azure Active Directory application](../active-directory/develop/howto-create-service-principal-portal.md#register-an-application-with-azure-ad-and-create-a-service-principal), create an application that represents the .NET application you're creating in this tutorial. For the sign-on URL, you can provide a dummy URL as shown in the article (`https://contoso.org/exampleapp`).
33
33
1. In [Get values for signing in](../active-directory/develop/howto-create-service-principal-portal.md#get-tenant-and-app-id-values-for-signing-in), get the **application ID** and **tenant ID**, and note down these values that you use later in this tutorial.
34
34
1. In [Certificates and secrets](../active-directory/develop/howto-create-service-principal-portal.md#authentication-two-options), get the **authentication key**, and note down this value that you use later in this tutorial.
35
35
1. In [Assign the application to a role](../active-directory/develop/howto-create-service-principal-portal.md#assign-a-role-to-the-application), assign the application to the **Contributor** role at the subscription level so that the application can create data factories in the subscription.
@@ -99,9 +99,9 @@ Next, create a C# .NET console application in Visual Studio:
99
99
};
100
100
```
101
101
102
-
## Create a Microsoft Purview account
102
+
## Create an account
103
103
104
-
Add the following code to the **Main** method that creates a**Microsoft Purview Account**.
104
+
Add the following code to the **Main** method that will create the**Microsoft Purview Account**.
105
105
106
106
```csharp
107
107
// Create a purview Account
@@ -163,7 +163,7 @@ Go to the **Microsoft Purview accounts** page in the [Azure portal](https://port
163
163
164
164
## Delete Microsoft Purview account
165
165
166
-
To programmatically delete a Microsoft Purview Account, add the following lines of code to the program:
166
+
To programmatically delete a Microsoft Purview account, add the following lines of code to the program:
167
167
168
168
```csharp
169
169
Console.WriteLine("Deleting the Microsoft Purview Account");
@@ -184,14 +184,14 @@ Console.WriteLine("Check Microsoft Purview account name");
The above code with print 'True' if the name is available and 'False' if the name is not available.
187
+
The above code with print 'True' if the name is available and 'False' if the name isn't available.
188
188
189
189
## Next steps
190
190
191
-
The code in this tutorial creates a purview account, deletes a purview account and checks for name availability of purview account. You can now download the .NET SDK and learn about other resource provider actions you can perform for a Microsoft Purview account.
191
+
In this quickstart, you learned how to create a Microsoft Purview (formerly Azure Purview) account, delete the account, and check for name availability. You can now download the .NET SDK and learn about other resource provider actions you can perform for a Microsoft Purview account.
192
192
193
-
Follow these next articles to learn how to navigate the Microsoft Purview governance portal, create a collection, and grant access to Microsoft Purview.
193
+
Follow these next articles to learn how to navigate the Microsoft Purview governance portal, create a collection, and grant access to the Microsoft Purview governance portal.
194
194
195
195
*[How to use the Microsoft Purview governance portal](use-azure-purview-studio.md)
196
+
*[Grant users permissions to the governance portal](catalog-permissions.md)
196
197
*[Create a collection](quickstart-create-collection.md)
197
-
*[Add users to your Microsoft Purview account](catalog-permissions.md)
Copy file name to clipboardExpand all lines: articles/purview/create-azure-purview-python.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
1
---
2
-
title: 'Quickstart: Create a Microsoft Purview account using Python'
3
-
description: Create a Microsoft Purview account using Python.
2
+
title: 'Quickstart: Create a Microsoft Purview (formerly Azure Purview) account using Python'
3
+
description: This article will guide you through creating a Microsoft Purview (formerly Azure Purview) account using Python.
4
4
author: nayenama
5
5
ms.author: nayenama
6
6
ms.service: purview
7
7
ms.devlang: python
8
8
ms.topic: quickstart
9
-
ms.date: 09/27/2021
9
+
ms.date: 06/17/2022
10
10
ms.custom: mode-api
11
11
---
12
12
13
-
# Quickstart: Create a Microsoft Purview account using Python
13
+
# Quickstart: Create a Microsoft Purview (formerly Azure Purview) account using Python
14
14
15
-
In this quickstart, you’ll create a Microsoft Purview account programatically using Python. [Python reference for Microsoft Purview](/python/api/azure-mgmt-purview/) is available, but this article will take you through all the steps needed to create an account with Python.
15
+
In this quickstart, you’ll create a Microsoft Purview (formerly Azure Purview) account programatically using Python. [The python reference for Microsoft Purview](/python/api/azure-mgmt-purview/) is available, but this article will take you through all the steps needed to create an account with Python.
16
16
17
-
Microsoft Purview is a data governance service that helps you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, Microsoft Purview creates an up-to-date map of your information. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
17
+
The Microsoft Purview governance portal surfaces tools like the Microsoft Purview Data Map and Microsoft Purview Data Catalog that help you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, the Microsoft Purview Data Map creates an up-to-date map of your information. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
18
18
19
-
For more information about Microsoft Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview across your organization, [see our deployment best practices](deployment-best-practices.md).
19
+
For more information about the governance capabilities of Microsoft Purview, formerly Azure Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview across your organization, [see our deployment best practices](deployment-best-practices.md)
@@ -200,10 +200,11 @@ pa = purview_client.accounts.begin_delete(rg_name, purview_name).result()
200
200
201
201
## Next steps
202
202
203
-
The code in this tutorial creates a purview account and deletes a purview account. You can now download the Python SDKand learn about other resource provider actions you can perform for a Microsoft Purview account.
203
+
In this quickstart, you learned how to create a Microsoft Purview (formerly Azure Purview) account, delete the account, and check for name availability. You can now download the Python SDKand learn about other resource provider actions you can perform for a Microsoft Purview account.
204
204
205
-
Follow these next articles to learn how to navigate the Microsoft Purview governance portal, create a collection, and grant access to Microsoft Purview.
205
+
Follow these next articles to learn how to navigate the Microsoft Purview governance portal, create a collection, and grant access to the Microsoft Purview governance portal.
206
206
207
207
* [How to use the Microsoft Purview governance portal](use-azure-purview-studio.md)
208
+
* [Grant users permissions to the governance portal](catalog-permissions.md)
208
209
* [Create a collection](quickstart-create-collection.md)
209
-
* [Add users to your Microsoft Purview account](catalog-permissions.md)
Copy file name to clipboardExpand all lines: articles/purview/create-catalog-portal.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ ms.custom: mode-ui
10
10
---
11
11
# Quickstart: Create an account in the Microsoft Purview governance portal
12
12
13
-
This quickstart describes the steps to Create a Microsft Purview (formerly Azure Purview) account through the Azure portal. Then we'll get started on the process of classifying, securing, and discovering your data in the Microsoft Purview Data Map!
13
+
This quickstart describes the steps to Create a Microsoft Purview (formerly Azure Purview) account through the Azure portal. Then we'll get started on the process of classifying, securing, and discovering your data in the Microsoft Purview Data Map!
14
14
15
-
The Microsoft Purview governance portal surfaces tools like the Microsoft Purview Data Map and Microsoft Purview Data Catalog, that help you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, the Microsoft Purview Data Map creates an up-to-date map of your data estate. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
15
+
The Microsoft Purview governance portal surfaces tools like the Microsoft Purview Data Map and Microsoft Purview Data Catalog that help you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, the Microsoft Purview Data Map creates an up-to-date map of your data estate. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
16
16
17
-
For more information about the governance capabilities of Microsoft Purview, formerly Azure Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview across your organization, [see our deployment best practices](deployment-best-practices.md).
17
+
For more information about the governance capabilities of Microsoft Purview, formerly Azure Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview governance services across your organization, [see our deployment best practices](deployment-best-practices.md).
#Customer intent: As a data steward, I want create a new Microsoft Purview Account so that I can scan and classify my data.
12
12
---
13
-
# Quickstart: Create a Microsoft Purview account using Azure PowerShell/Azure CLI
13
+
# Quickstart: Create a Microsoft Purview (formerly Azure Purview) account using Azure PowerShell/Azure CLI
14
14
15
15
In this Quickstart, you'll create a Microsoft Purview account using Azure PowerShell/Azure CLI. [PowerShell reference for Microsoft Purview](/powershell/module/az.purview/) is available, but this article will take you through all the steps needed to create an account with PowerShell.
16
16
17
-
Microsoft Purview is a data governance service that helps you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, Microsoft Purview creates an up-to-date map of your information. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
17
+
The Microsoft Purview governance portal surfaces tools like the Microsoft Purview Data Map and Microsoft Purview Data Catalog that help you manage and govern your data landscape. By connecting to data across your on-premises, multi-cloud, and software-as-a-service (SaaS) sources, the Microsoft Purview Data Map creates an up-to-date map of your information. It identifies and classifies sensitive data, and provides end-to-end linage. Data consumers are able to discover data across your organization, and data administrators are able to audit, secure, and ensure right use of your data.
18
18
19
-
For more information about Microsoft Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview across your organization, [see our deployment best practices](deployment-best-practices.md).
19
+
the governance capabilities of Microsoft Purview, formerly Azure Purview, [see our overview page](overview.md). For more information about deploying Microsoft Purview governance services across your organization, [see our deployment best practices](deployment-best-practices.md).
Install either Azure PowerShell or Azure CLI in your client machine to deploy the template: [Command-line deployment](../azure-resource-manager/templates/template-tutorial-create-first-template.md?tabs=azure-cli#command-line-deployment)
26
26
27
-
## Create a Microsoft Purview account
27
+
## Create an account
28
28
29
29
1. Sign in with your Azure credential
30
30
@@ -58,7 +58,7 @@ For more information about Microsoft Purview, [see our overview page](overview.m
58
58
59
59
---
60
60
61
-
1. Create a resource group for your Microsoft Purview account. You can skip this step if you already have one:
61
+
1. Create a resource group for your account. You can skip this step if you already have one:
62
62
63
63
# [PowerShell](#tab/azure-powershell)
64
64
@@ -76,7 +76,7 @@ For more information about Microsoft Purview, [see our overview page](overview.m
76
76
77
77
---
78
78
79
-
1. Create or Deploy the Microsoft Purview account
79
+
1. Create or Deploy the account:
80
80
81
81
# [PowerShell](#tab/azure-powershell)
82
82
@@ -132,7 +132,7 @@ For more information about Microsoft Purview, [see our overview page](overview.m
132
132
133
133
1. The deployment command returns results. Look for `ProvisioningState` to see whether the deployment succeeded.
134
134
135
-
1. If you deployed the Microsoft Purview account using a service principal, instead of a user account, you will also need to run the below command in the Azure CLI:
135
+
1. If you deployed the account using a service principal, instead of a user account, you'll also need to run the below command in the Azure CLI:
136
136
137
137
```azurecli
138
138
az purview account add-root-collection-admin --account-name [Microsoft Purview Account Name] --resource-group [Resource Group Name] --object-id [User Object Id]
@@ -142,10 +142,10 @@ For more information about Microsoft Purview, [see our overview page](overview.m
142
142
143
143
## Next steps
144
144
145
-
In this quickstart, you learned how to create a Microsoft Purview account.
145
+
In this quickstart, you learned how to create a Microsoft Purview (formerly Azure Purview) account.
146
146
147
-
Follow these next articles to learn how to navigate the Microsoft Purview governance portal, create a collection, and grant access to Microsoft Purview.
147
+
Follow these next articles to learn how to navigate the Microsoft Purview governance portal, create a collection, and grant access to the Microsoft Purview governance portal.
148
148
149
149
* [How to use the Microsoft Purview governance portal](use-azure-purview-studio.md)
150
-
* [Add users to your Microsoft Purview account](catalog-permissions.md)
150
+
* [Grant users permissions to the governance portal](catalog-permissions.md)
151
151
* [Create a collection](quickstart-create-collection.md)
0 commit comments