Remove-QClassificationLevel
Removes an existing classification level from your Data Governance Edition deployment.
Syntax:
Remove-QClassificationLevel -[-ID] <String> [<CommonParameters>]
Table 259: Parameters
ID |
Specify the identifier assigned to the classification level to be removed.
Run the Get-QClassificationLevelConfiguration cmdlet to retrieve a list of configured classification levels, including their assigned identifiers.
NOTE: Deleting a classification level will automatically remove it from all associated governed data. Prior to running this cmdlet, run the Get-QDataUnderGovernanceByClassificationLevel cmdlet to retrieve a list of the resources assigned to the specified classification level. |
Examples:
Table 260: Examples
Remove-QClassificationLevel -ID 4E4F22C7-A30A-45C3-808A-C134C132B590 |
Removes the specified classification level from your Data Governance Edition deployment. |
Set-QClassificationLevel
Updates an existing classification level defined for use by the Data Governance Edition deployment.
Syntax:
Set-QClassificationLevel [-ID] <String> [[-Name] [<String>]] [[-Description] [<String>]] [[-SortOrder] [<Int>]] [<CommonParameters>]
Table 261: Parameters
ID |
Specify the identifier assigned to the classification level to be updated.
Run the Get-QClassificationLevelConfiguration cmdlet to retrieve a list of configured classification levels, including their assigned identifiers. |
Name |
Specify to change the name to be associated with the specified classification level.
The length of the name is limited to 512 characters. Any text is allowed, including spaces and other special characters. |
Description |
Specify to change the descriptive text to be associated with the specified classification level.
Any text is allowed, including spaces and other special characters. |
SortOrder |
Specify to change the display order of the selected classification level. |
Examples:
Table 262: Examples
Set-QClassificationLevel -ID D7EADC4B-46F1-430A-95C7-1D300A4E6FA3 -Name "Public" -Description "General information created for internal or external sources that can be shared publicly." |
Changes the name and description of the specified classification level. |
Set-QClassificationLevelOnDuG
Assigns a classification level to a governed resource.
Syntax:
Set-QClassificationLevelOnDuG [-DuGId] <String> [-ClassificationLevelId] <String> [[Justification] [<String>]] [<CommonParameters>]
Table 263: Parameters
DuGID |
Specify the identifier assigned to the governed resource to be classified (that is, value assigned to UID_QAMDuG parameter).
Run the Get-QDataUnderGovernance cmdlet to retrieve a list of governed resources for a managed host or resource path, including their assigned identifiers. |
ClassificationLevelId |
Specify the identifier assigned to the classification level to be assigned (that is, value assigned to UID_QAMClassificationLevelMan parameter).
Run the Get-QClassificationLevelConfiguration cmdlet to retrieve a list of configured classification levels, including their assigned identifiers. |
Justification |
(Optional) Enter the reason for assigning this classification level |
Examples:
Table 264: Examples
Set-QClassificationLevelOnDuG -DuGID 3FAA7F80-F964-4C2A-8F99-045EE43A0A3F -ClassificationLevelId 51442B53-A9BE-4EE0-8A89-B5D5ED3CF387 -Justification "Contains company confidential information" |
Manually assign the 'Internal Use Only' classification level (with UID_QAMClassificationLevel value of 51442B53-A9BE-4EE0-8A89-B5D5ED3CF387) to the specified governed resource (with UID_QAMDuG value of 3FAA7F80-F964-4C2A-8F99-045EE43A0A3F). |