Skip to main content

NestedConfig

Properties

NameTypeDescriptionNotes
AncestorIdStringThe unique identifier of the ancestor RightSet.[optional]
DepthInt32The depth level of the configuration.[optional]
ParentIdStringThe unique identifier of the parent RightSet.[optional]
ChildrenIds[]StringList of unique identifiers for child configurations.[optional]

Examples

  • Prepare the resource
$NestedConfig = Initialize-V2025NestedConfig  -AncestorId idn:ui-ancestor-example `
-Depth 2 `
-ParentId idn:ui-parent-example `
-ChildrenIds [idn:ui-child-one-example, idn:ui-child-two-example]
  • Convert the resource to JSON
$NestedConfig | ConvertTo-JSON

[Back to top]