Skip to main content

HierarchicalRightSet

Properties

NameTypeDescriptionNotes
IdStringThe unique identifier of the RightSet.[optional]
NameStringThe human-readable name of the RightSet.[optional]
DescriptionStringA human-readable description of the RightSet.[optional]
CategoryStringThe category of the RightSet.[optional]
NestedConfigNestedConfig[optional]
Children[]HierarchicalRightSetList 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]