Skip to content

Commit f2a80cd

Browse files
committed
Update Help Files
1 parent 9888ac2 commit f2a80cd

8 files changed

+36
-36
lines changed

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

Lines changed: 6 additions & 6 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

@@ -40,11 +40,11 @@ Get-AzSqlDatabaseSensitivityClassification -InputObject <AzureSqlDatabaseModel>
4040
```
4141

4242
## DESCRIPTION
43-
The Get-AzSqlDatabaseSensitivityClassification cmdlet returns the current sensitivity labels and information types of columns in the database.
43+
The Get-AzSqlDatabaseSensitivityClassification cmdlet returns the current information types and sensitivity labels of columns in the database.
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.
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.
116116
```powershell
117117
PS C:\> Get-AzSqlDatabase -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Get-AzSqlDatabaseSensitivityClassification -SchemaName schema -TableName table -ColumnName column
118118

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Get-AzSqlDatabaseSensitivityRecommendations
1010

1111
## SYNOPSIS
12-
Gets the recommended sensitivity labels and information types of columns in the database.
12+
Gets the recommended information types and sensitivity labels of columns in the database.
1313

1414
## SYNTAX
1515

@@ -26,11 +26,11 @@ Get-AzSqlDatabaseSensitivityRecommendations -InputObject <AzureSqlDatabaseModel>
2626
```
2727

2828
## DESCRIPTION
29-
The Get-AzSqlDatabaseSensitivityRecommendations cmdlet returns the recommended sensitivity labels and information types of columns in the database.
29+
The Get-AzSqlDatabaseSensitivityRecommendations cmdlet returns the recommended information types and sensitivity labels of columns in the database.
3030

3131
## EXAMPLES
3232

33-
### Example 1: Get recommended sensitivity classification of an Azure SQL database.
33+
### Example 1: Get recommended information types and sensitivity labels of an Azure SQL Database.
3434
```powershell
3535
PS C:\> Get-AzSqlDatabaseSensitivityRecommendations -ResourceGroupName resourceGroup -ServerName server -DatabaseName database
3636
@@ -56,7 +56,7 @@ SensitivityLabels : {{
5656
}}
5757
```
5858

59-
### Example 2: Get recommended sensitivity classification of an Azure SQL database.
59+
### Example 2: Get recommended information types and sensitivity labels of an Azure SQL Database.
6060
```powershell
6161
PS C:\> Get-AzSqlDatabase -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Get-AzSqlDatabaseSensitivityRecommendations
6262

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Get-AzSqlInstanceDatabaseSensitivityClassification
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

@@ -40,11 +40,11 @@ Get-AzSqlInstanceDatabaseSensitivityClassification -InputObject <AzureSqlManaged
4040
```
4141

4242
## DESCRIPTION
43-
The Get-AzSqlInstanceDatabaseSensitivityClassification cmdlet returns the current sensitivity labels and information types of columns in the database.
43+
The Get-AzSqlInstanceDatabaseSensitivityClassification cmdlet returns the current information types and sensitivity labels of columns in the database.
4444

4545
## EXAMPLES
4646

47-
### Example 1: Get current sensitivity classification of an Azure SQL Managed Instance database.
47+
### Example 1: Get current information types and sensitivity labels of an Azure SQL Managed Instance Database.
4848
```powershell
4949
PS C:\> Get-AzSqlInstanceDatabaseSensitivityClassification -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database
5050
@@ -70,7 +70,7 @@ SensitivityLabels : {{
7070
}}
7171
```
7272

73-
### Example 2: Get current sensitivity classification of an Azure SQL Managed Instance database.
73+
### Example 2: Get current information types and sensitivity labels of an Azure SQL Managed Instance Database.
7474
```powershell
7575
PS C:\> Get-AzSqlInstanceDatabase -ResourceGroupName resourceGroup -InstanceName managedInstance -Name database | Get-AzSqlInstanceDatabaseSensitivityClassification
7676
@@ -96,7 +96,7 @@ SensitivityLabels : {{
9696
}}
9797
```
9898

99-
### Example 3: Get current sensitivity classification of a specific column of an Azure SQL Managed Instance database.
99+
### Example 3: Get current information type and sensitivity label of a specific column of an Azure SQL Managed Instance Database.
100100
```powershell
101101
PS C:\> Get-AzSqlInstanceDatabaseSensitivityClassification -ResourceGroupName resourceGroup -InstanceName managedInstance -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 Managed Instance database.
115+
### Example 4: Get current information type and sensitivity label of a specific column of an Azure SQL Managed Instance Database.
116116
```powershell
117117
PS C:\> Get-AzSqlInstanceDatabase -ResourceGroupName resourceGroup -InstanceName managedInstance -Name database | Get-AzSqlInstanceDatabaseSensitivityClassification -SchemaName schema -TableName table -ColumnName column
118118

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Get-AzSqlInstanceDatabaseSensitivityRecommendations
1010

1111
## SYNOPSIS
12-
Gets the recommended sensitivity labels and information types of columns in the database.
12+
Gets the recommended information types and sensitivity labels of columns in the database.
1313

1414
## SYNTAX
1515

@@ -26,11 +26,11 @@ Get-AzSqlInstanceDatabaseSensitivityRecommendations -InputObject <AzureSqlManage
2626
```
2727

2828
## DESCRIPTION
29-
The Get-AzSqlInstanceDatabaseSensitivityRecommendations cmdlet returns the recommended sensitivity labels and information types of columns in the database.
29+
The Get-AzSqlInstanceDatabaseSensitivityRecommendations cmdlet returns the recommended information types and sensitivity labels of columns in the database.
3030

3131
## EXAMPLES
3232

33-
### Example 1: Get recommended sensitivity classification of an Azure SQL Managed Instance database.
33+
### Example 1: Get recommended information types and sensitivity labels of an Azure SQL Managed Instance Database.
3434
```powershell
3535
PS C:\> Get-AzSqlInstanceDatabaseSensitivityRecommendations -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database
3636
@@ -56,7 +56,7 @@ SensitivityLabels : {{
5656
}}
5757
```
5858

59-
### Example 2: Get recommended sensitivity classification of an Azure SQL Managed Instance database.
59+
### Example 2: Get recommended information types and sensitivity labels of an Azure SQL Managed Instance Database.
6060
```powershell
6161
PS C:\> Get-AzSqlInstanceDatabase -ResourceGroupName resourceGroup -InstanceName managedInstance -Name database | Get-AzSqlInstanceDatabaseSensitivityRecommendations
6262

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Remove-AzSqlDatabaseSensitivityClassification
1010

1111
## SYNOPSIS
12-
Removes the classification of columns in the database.
12+
Removes the information types and sensitivity labels of columns in the database.
1313

1414
## SYNTAX
1515

@@ -27,16 +27,16 @@ Remove-AzSqlDatabaseSensitivityClassification -InputObject <SqlDatabaseSensitivi
2727
```
2828

2929
## DESCRIPTION
30-
The Remove-AzSqlDatabaseSensitivityClassification cmdlet removes the classification of columns in the database.
30+
The Remove-AzSqlDatabaseSensitivityClassification cmdlet removes the information types and sensitivity labels of columns in the database.
3131

3232
## EXAMPLES
3333

34-
### Example 1: Remove sensitivity classification of a column in an Azure SQL database.
34+
### Example 1: Remove information type and sensitivity label of a column in an Azure SQL Database.
3535
```powershell
3636
PS C:\> Remove-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database -SchemaName schema -TableName table -ColumnName column
3737
```
3838

39-
### Example 2: Remove current sensitivity classification of columns in an Azure SQL database.
39+
### Example 2: Remove current information types and sensitivity labels of columns in an Azure SQL Database.
4040
```powershell
4141
PS C:\> Get-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Remove-AzSqlDatabaseSensitivityClassification
4242
```

src/Sql/Sql/help/Remove-AzSqlInstanceDatabaseSensitivityClassification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Remove-AzSqlInstanceDatabaseSensitivityClassification
1010

1111
## SYNOPSIS
12-
Removes the classification of columns in the database.
12+
Removes the information types and sensitivity labels of columns in the database.
1313

1414
## SYNTAX
1515

@@ -28,16 +28,16 @@ Remove-AzSqlInstanceDatabaseSensitivityClassification
2828
```
2929

3030
## DESCRIPTION
31-
The Remove-AzSqlInstanceDatabaseSensitivityClassification cmdlet removes the classification of columns in the database.
31+
The Remove-AzSqlInstanceDatabaseSensitivityClassification cmdlet removes the information types and sensitivity labels of columns in the database.
3232

3333
## EXAMPLES
3434

35-
### Example 1: Remove sensitivity classification of a column in an Azure SQL Managed Instance database.
35+
### Example 1: Remove information type and sensitivity label of a column in an Azure SQL Managed Instance Database.
3636
```powershell
3737
PS C:\> Remove-AzSqlInstanceDatabaseSensitivityClassification -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database -SchemaName schema -TableName table -ColumnName column
3838
```
3939

40-
### Example 2: Remove current sensitivity classification of columns in an Azure SQL Managed Instance database.
40+
### Example 2: Remove current information types and sensitivity labels of columns in an Azure SQL Managed Instance Database.
4141
```powershell
4242
PS C:\> Get-AzSqlInstanceDatabaseSensitivityClassification -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database | Remove-AzSqlInstanceDatabaseSensitivityClassification
4343
```

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Set-AzSqlDatabaseSensitivityClassification
1010

1111
## SYNOPSIS
12-
Sets the sensitivity labels and information types of columns in the database.
12+
Sets the information types and sensitivity labels of columns in the database.
1313

1414
## SYNTAX
1515

@@ -28,16 +28,16 @@ Set-AzSqlDatabaseSensitivityClassification -InputObject <SqlDatabaseSensitivityC
2828
```
2929

3030
## DESCRIPTION
31-
The Set-AzSqlDatabaseSensitivityClassification cmdlet sets the sensitivity labels and information types of columns in the database.
31+
The Set-AzSqlDatabaseSensitivityClassification cmdlet sets the information types and sensitivity labels of columns in the database.
3232

3333
## EXAMPLES
3434

35-
### Example 1: Set sensitivity classification of a column in an Azure SQL database.
35+
### Example 1: Set information type and sensitivity label of a column in an Azure SQL Database.
3636
```powershell
3737
PS C:\> Set-AzSqlDatabaseSensitivityClassification -ResourceGroupName resourceGroup -ServerName server -DatabaseName database -SchemaName schema -TableName table -ColumnName column -InformationType informationType -LabelName label
3838
```
3939

40-
### Example 2: Set recommended sensitivity classification of columns in an Azure SQL database.
40+
### Example 2: Set recommended information types and sensitivity labels of columns in an Azure SQL Database.
4141
```powershell
4242
PS C:\> Get-AzSqlDatabaseSensitivityRecommendations -ResourceGroupName resourceGroup -ServerName server -DatabaseName database | Set-AzSqlDatabaseSensitivityClassification
4343
```

src/Sql/Sql/help/Set-AzSqlInstanceDatabaseSensitivityClassification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99
# Set-AzSqlInstanceDatabaseSensitivityClassification
1010

1111
## SYNOPSIS
12-
Sets the sensitivity labels and information types of columns in the database.
12+
Sets the information types and sensitivity labels of columns in the database.
1313

1414
## SYNTAX
1515

@@ -28,16 +28,16 @@ Set-AzSqlInstanceDatabaseSensitivityClassification -InputObject <ManagedDatabase
2828
```
2929

3030
## DESCRIPTION
31-
The Set-AzSqlInstanceDatabaseSensitivityClassification cmdlet sets the sensitivity labels and information types of columns in the database.
31+
The Set-AzSqlInstanceDatabaseSensitivityClassification cmdlet sets the information types and sensitivity labels of columns in the database.
3232

3333
## EXAMPLES
3434

35-
### Example 1: Set sensitivity classification of a column in an Azure SQL Managed Instance database.
35+
### Example 1: Set information type and sensitivity label of a column in an Azure SQL Managed Instance Database.
3636
```powershell
3737
PS C:\> Set-AzSqlInstanceDatabaseSensitivityClassification -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database -SchemaName schema -TableName table -ColumnName column -InformationType informationType -LabelName label
3838
```
3939

40-
### Example 2: Set recommended sensitivity classification of columns in an Azure SQL Managed Instance database.
40+
### Example 2: Set recommended information types and sensitivity labels of columns in an Azure SQL Managed Instance Database.
4141
```powershell
4242
PS C:\> Get-AzSqlInstanceDatabaseSensitivityRecommendations -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database | Set-AzSqlInstanceDatabaseSensitivityClassification
4343
```

0 commit comments

Comments
 (0)