Adds a type group permissions object to the Data Governance Edition deployment.
A type group permissions object correlates possible permissions and group hierarchies within a managed resource type.
Syntax:
Add-QTypeGroupPermissions -ManagedResourceTypeID <String> -ManagedGroupTemplateID <String> [-Permissions [<Int32>]] [<CommonParameters>]
Parameter | Description |
---|---|
ManagedResourceTypeID |
Specify the ID (GUID format) of a managed resource type to be associated with the new type group permissions object. Run the Get-QManagedResourceType cmdlet to retrieve a list of available resource types and their IDs. |
ManagedGroupTemplateID |
Specify the ID (GUID format) of a managed group template to be associated with the new type group permissions object. Run the Get-QManagedGroupTemplate cmdlet to retrieve a list of available group templates and their IDs. |
Permissions |
(Optional) Specify the type of permissions to use for the new type group permissions object:
If this parameter is not specified, Read permissions is used for the type group permissions object. |
Examples:
Example | Description |
---|---|
Add-QTypeGroupPermissions -ManagedResourceTypeID a816fe83-6d49-4f43-9c0a-b37589e1058d -ManagedGroupTemplateID 0381aced-2aa7-4cc0-bbe2-b400a9c9ea9e | Creates a type group permissions object with Read permissions. |
Add-QTypeGroupPermissions -ManagedResourceTypeID a816fe83-6d49-4f43-9c0a-b37589e1058d -ManagedGroupTemplateID 381aced-2aa7-4cc0-bbe2-b400a9c9ea9e -Permissions 1 | Creates a type group permissions object with Read Write permissions. |