Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/HierarchicalRightSet.md
2025-07-15 20:43:13 +00:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-hierarchical-right-set HierarchicalRightSet HierarchicalRightSet HierarchicalRightSet powershellsdk
powershell
PowerShell
sdk
HierarchicalRightSet
V2025HierarchicalRightSet
/tools/sdk/powershell/v2025/models/hierarchical-right-set
SDK
Software Development Kit
HierarchicalRightSet
V2025HierarchicalRightSet

HierarchicalRightSet

Properties

Name Type Description Notes
Id String The unique identifier of the RightSet. [optional]
Name String The human-readable name of the RightSet. [optional]
Description String A human-readable description of the RightSet. [optional]
Category String The category of the RightSet. [optional]
NestedConfig NestedConfig [optional]
Children []HierarchicalRightSet List of child HierarchicalRightSets. [optional]

Examples

  • Prepare the resource
$HierarchicalRightSet = Initialize-V2025HierarchicalRightSet  -Id idn:ui-right-set-example `
 -Name Hierarchical Right Set Name `
 -Description This is a description of the HierarchicalRightSet. `
 -Category identity `
 -NestedConfig null `
 -Children {id=idn:ui-identity-details-example, name=Identity Details, description=Read only access for identity details., category=identity, nestedConfig={ancestorId=idn:ui-identity-management-example, depth=1, parentId=idn:ui-identity-management-example, childrenIds=[]}, children=[]}
  • Convert the resource to JSON
$HierarchicalRightSet | ConvertTo-JSON

[Back to top]