@@ -9,7 +9,7 @@ schema: 2.0.0
99# Get-AzSqlDatabaseSensitivityClassification
1010
1111## SYNOPSIS
12- Gets the current sensitivity labels and information types of columns in the database.
12+ Gets the current information types and sensitivity labels of columns in the database.
1313
1414## SYNTAX
1515
@@ -44,7 +44,7 @@ The Get-AzSqlDatabaseSensitivityClassification cmdlet returns the current sensit
4444
4545## EXAMPLES
4646
47- ### Example 1: Get current sensitivity classification of an Azure SQL database.
47+ ### Example 1: Get current information types and sensitivity labels of an Azure SQL database.
4848``` powershell
4949PS C:\> Get-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database
5050
@@ -70,7 +70,7 @@ SensitivityLabels : {{
7070 }}
7171```
7272
73- ### Example 2: Get current sensitivity classification of an Azure SQL database.
73+ ### Example 2: Get current information types and sensitivity labels of an Azure SQL database with Piping .
7474``` powershell
7575PS C:\> Get-AzSqlDatabase -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Get-AzSqlDatabaseSensitivityClassification
7676
@@ -96,7 +96,7 @@ SensitivityLabels : {{
9696 }}
9797```
9898
99- ### Example 3: Get current sensitivity classification of a specific column of an Azure SQL database.
99+ ### Example 3: Get current information type and sensitivity label of a specific column of an Azure SQL database.
100100``` powershell
101101PS C:\> Get-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database -SchemaName schema -TableName table -ColumnName column
102102
@@ -112,7 +112,7 @@ SensitivityLabels : {{
112112 }}
113113```
114114
115- ### Example 4: Get current sensitivity classification of a specific column of an Azure SQL database.
115+ ### Example 4: Get current information type and sensitivity label of a specific column of an Azure SQL database using Piping .
116116``` powershell
117117PS C:\> Get-AzSqlDatabase -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Get-AzSqlDatabaseSensitivityClassification -SchemaName schema -TableName table -ColumnName column
118118
@@ -153,15 +153,15 @@ Type: System.String
153153Parameter Sets : ColumnParameterSet, ParentResourceColumnParameterSet
154154Aliases :
155155
156- Required : True
156+ Required : True <-- This is not actually required, correct? If so, please fix
157157Position : Named
158158Default value : None
159159Accept pipeline input : True (ByPropertyName)
160160Accept wildcard characters : False
161161` ` `
162162
163163### -DatabaseName
164- The name of the Azure SQL Database .
164+ The name of the Azure SQL database .
165165
166166` ` ` yaml
167167Type : System.String
@@ -228,7 +228,7 @@ Type: System.String
228228Parameter Sets : ColumnParameterSet, ParentResourceColumnParameterSet
229229Aliases :
230230
231- Required : True
231+ Required : True <-- This is not required, correct? If so, please fix
232232Position : Named
233233Default value : None
234234Accept pipeline input : True (ByPropertyName)
@@ -258,7 +258,7 @@ Type: System.String
258258Parameter Sets : ColumnParameterSet, ParentResourceColumnParameterSet
259259Aliases :
260260
261- Required : True
261+ Required : True <-- This is not required, correct? If so, please fix
262262Position : Named
263263Default value : None
264264Accept pipeline input : True (ByPropertyName)
@@ -279,3 +279,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
279279## NOTES
280280
281281## RELATED LINKS
282+
283+ Learn more about [Azure SQL Database data discovery and classification](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-data-discovery-and-classification)
0 commit comments