Skip to content

Commit

Permalink
Merge pull request #10 from vainolo/patch-14
Browse files Browse the repository at this point in the history
Update Remove-AzSqlInstanceDatabaseSensitivityClassification.md
  • Loading branch information
bashahee authored Feb 12, 2019
2 parents f91ce2a + f3172f0 commit 264bc3a
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ schema: 2.0.0
# Remove-AzSqlInstanceDatabaseSensitivityClassification

## SYNOPSIS
Removes the information types and sensitivity labels of columns in the database.
Removes the information types and sensitivity labels of columns in the Azure SQL managed instance database.

## SYNTAX

Expand All @@ -28,16 +28,16 @@ Remove-AzSqlInstanceDatabaseSensitivityClassification
```

## DESCRIPTION
The Remove-AzSqlInstanceDatabaseSensitivityClassification cmdlet removes the information types and sensitivity labels of columns in the database.
The Remove-AzSqlInstanceDatabaseSensitivityClassification cmdlet removes the information types and sensitivity labels of columns in the Azure SQL managed instance database.

## EXAMPLES

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

### Example 2: Remove current information types and sensitivity labels of columns in an Azure SQL Managed Instance Database.
### Example 2: Remove current information types and sensitivity labels of columns in an Azure SQL managed instance database with Piping.
```powershell
PS C:\> Get-AzSqlInstanceDatabaseSensitivityClassification -ResourceGroupName resourceGroup -InstanceName managedInstance -DatabaseName database | Remove-AzSqlInstanceDatabaseSensitivityClassification
```
Expand Down Expand Up @@ -75,7 +75,7 @@ Accept wildcard characters: False
```
### -DatabaseName
The name of the Azure SQL Instance Database.
The name of the Azure SQL managed instance database.
```yaml
Type: System.String
Expand Down Expand Up @@ -105,7 +105,7 @@ Accept wildcard characters: False
```
### -InputObject
The SQL database object.
The Azure SQL managed instance database object.
```yaml
Type: Microsoft.Azure.Commands.Sql.DataClassification.Model.ManagedDatabaseSensitivityClassificationModel
Expand All @@ -120,7 +120,7 @@ Accept wildcard characters: False
```
### -InstanceName
SQL Managed Instance name.
Azure SQL managed instance name.
```yaml
Type: System.String
Expand Down Expand Up @@ -221,3 +221,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## NOTES
## RELATED LINKS
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 comments on commit 264bc3a

Please sign in to comment.