Skip to content

Commit 50b4598

Browse files
authored
Merge pull request #3 from vainolo/patch-5
Update Get-AzSqlDatabaseSensitivityClassification.md
2 parents 9888ac2 + 566d21e commit 50b4598

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

src/Sql/Sql/help/Get-AzSqlDatabaseSensitivityClassification.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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
4949
PS 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
7575
PS 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
101101
PS 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
117117
PS 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
153153
Parameter Sets: ColumnParameterSet, ParentResourceColumnParameterSet
154154
Aliases:
155155

156-
Required: True
156+
Required: True <-- This is not actually required, correct? If so, please fix
157157
Position: Named
158158
Default value: None
159159
Accept pipeline input: True (ByPropertyName)
160160
Accept 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
167167
Type: System.String
@@ -228,7 +228,7 @@ Type: System.String
228228
Parameter Sets: ColumnParameterSet, ParentResourceColumnParameterSet
229229
Aliases:
230230

231-
Required: True
231+
Required: True <-- This is not required, correct? If so, please fix
232232
Position: Named
233233
Default value: None
234234
Accept pipeline input: True (ByPropertyName)
@@ -258,7 +258,7 @@ Type: System.String
258258
Parameter Sets: ColumnParameterSet, ParentResourceColumnParameterSet
259259
Aliases:
260260

261-
Required: True
261+
Required: True <-- This is not required, correct? If so, please fix
262262
Position: Named
263263
Default value: None
264264
Accept 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

Comments
 (0)