Skip to content

Commit 618f8b7

Browse files
authored
Merge pull request #114673 from DavidTrigano/patch-4
Update sql-database-dynamic-data-masking-get-started.md
2 parents e9621f5 + e894553 commit 618f8b7

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

articles/sql-database/sql-database-dynamic-data-masking-get-started.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,28 @@ The DDM recommendations engine, flags certain fields from your database as poten
5252

5353
## Set up dynamic data masking for your database using PowerShell cmdlets
5454

55-
See [Azure SQL Database Cmdlets](https://docs.microsoft.com/powershell/module/az.sql).
55+
### Data Masking Policy
56+
57+
- [Get-AzSqlDatabaseDataMaskingPolicy](https://docs.microsoft.com/powershell/module/az.sql/Get-AzSqlDatabaseDataMaskingPolicy)
58+
- [Set-AzSqlDatabaseDataMaskingPolicy](https://docs.microsoft.com/powershell/module/az.sql/Set-AzSqlDatabaseDataMaskingPolicy)
59+
60+
### Data Masking Rules
61+
62+
- [Get-AzSqlDatabaseDataMaskingRule](https://docs.microsoft.com/powershell/module/az.sql/Get-AzSqlDatabaseDataMaskingRule)
63+
- [New-AzSqlDatabaseDataMaskingRule](https://docs.microsoft.com/powershell/module/az.sql/New-AzSqlDatabaseDataMaskingRule)
64+
- [Remove-AzSqlDatabaseDataMaskingRule](https://docs.microsoft.com/powershell/module/az.sql/Remove-AzSqlDatabaseDataMaskingRule)
65+
- [Set-AzSqlDatabaseDataMaskingRule](https://docs.microsoft.com/powershell/module/az.sql/Set-AzSqlDatabaseDataMaskingRule)
5666

5767
## Set up dynamic data masking for your database using REST API
5868

59-
See [Operations for Azure SQL Database](https://docs.microsoft.com/rest/api/sql/).
69+
You can use the REST API to programmatically manage data masking policy and rules. The published REST API supports the following operations:
70+
71+
### Data Masking Policies
72+
73+
- [Create Or Update](https://docs.microsoft.com/rest/api/sql/datamaskingpolicies/createorupdate): Creates or updates the sensitivity label of the specified column.
74+
- [Get](https://docs.microsoft.com/rest/api/sql/datamaskingpolicies/get): Gets a database data masking policy.
75+
76+
### Data Masking Rules
77+
78+
- [Create Or Update](https://docs.microsoft.com/rest/api/sql/datamaskingrules/createorupdate): Creates or updates a database data masking rule.
79+
- [List By Database](https://docs.microsoft.com/rest/api/sql/datamaskingrules/listbydatabase): Gets a list of database data masking rules.

0 commit comments

Comments
 (0)