Skip to main content

Hierarchicalrightset

A HierarchicalRightSet

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the RightSet.[optional]
namestrThe human-readable name of the RightSet.[optional]
descriptionstrA human-readable description of the RightSet.[optional]
categorystrThe category of the RightSet.[optional]
nested_configNestedconfig[optional]
children[]HierarchicalrightsetList of child HierarchicalRightSets.[optional]
}

Example

from sailpoint.custom_user_levels.models.hierarchicalrightset import Hierarchicalrightset

hierarchicalrightset = Hierarchicalrightset(
id='idn:ui-right-set-example',
name='Hierarchical Right Set Name',
description='This is a description of the HierarchicalRightSet.',
category='identity',
nested_config=sailpoint.custom_user_levels.models.nestedconfig.nestedconfig(
ancestor_id = 'idn:ui-ancestor-example',
depth = 2,
parent_id = 'idn:ui-parent-example',
children_ids = ["idn:ui-child-one-example","idn:ui-child-two-example"], ),
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":[]}
)

[Back to top]