@@ -9,7 +9,7 @@ schema: 2.0.0
9
9
# Get-AzSqlDatabaseSensitivityClassification
10
10
11
11
## 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.
13
13
14
14
## SYNTAX
15
15
@@ -44,7 +44,7 @@ The Get-AzSqlDatabaseSensitivityClassification cmdlet returns the current sensit
44
44
45
45
## EXAMPLES
46
46
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.
48
48
``` powershell
49
49
PS C:\> Get-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database
50
50
@@ -70,7 +70,7 @@ SensitivityLabels : {{
70
70
}}
71
71
```
72
72
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 .
74
74
``` powershell
75
75
PS C:\> Get-AzSqlDatabase -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Get-AzSqlDatabaseSensitivityClassification
76
76
@@ -96,7 +96,7 @@ SensitivityLabels : {{
96
96
}}
97
97
```
98
98
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.
100
100
``` powershell
101
101
PS C:\> Get-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database -SchemaName schema -TableName table -ColumnName column
102
102
@@ -112,7 +112,7 @@ SensitivityLabels : {{
112
112
}}
113
113
```
114
114
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 .
116
116
``` powershell
117
117
PS C:\> Get-AzSqlDatabase -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Get-AzSqlDatabaseSensitivityClassification -SchemaName schema -TableName table -ColumnName column
118
118
@@ -153,15 +153,15 @@ Type: System.String
153
153
Parameter Sets : ColumnParameterSet, ParentResourceColumnParameterSet
154
154
Aliases :
155
155
156
- Required : True
156
+ Required : True <-- This is not actually required, correct? If so, please fix
157
157
Position : Named
158
158
Default value : None
159
159
Accept pipeline input : True (ByPropertyName)
160
160
Accept wildcard characters : False
161
161
` ` `
162
162
163
163
### -DatabaseName
164
- The name of the Azure SQL Database .
164
+ The name of the Azure SQL database .
165
165
166
166
` ` ` yaml
167
167
Type : System.String
@@ -228,7 +228,7 @@ Type: System.String
228
228
Parameter Sets : ColumnParameterSet, ParentResourceColumnParameterSet
229
229
Aliases :
230
230
231
- Required : True
231
+ Required : True <-- This is not required, correct? If so, please fix
232
232
Position : Named
233
233
Default value : None
234
234
Accept pipeline input : True (ByPropertyName)
@@ -258,7 +258,7 @@ Type: System.String
258
258
Parameter Sets : ColumnParameterSet, ParentResourceColumnParameterSet
259
259
Aliases :
260
260
261
- Required : True
261
+ Required : True <-- This is not required, correct? If so, please fix
262
262
Position : Named
263
263
Default value : None
264
264
Accept pipeline input : True (ByPropertyName)
@@ -279,3 +279,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
279
279
## NOTES
280
280
281
281
## 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