Skip to main content

Rightsetdto

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]
Rights[]StringRight is the most granular unit that determines specific API permissions, this is a list of rights associated with the RightSet.[optional]
RightSetIds[]StringList of unique identifiers for related RightSets, current RightSet contains rights from these RightSets.[optional]
UiAssignableChildRightSetIds[]StringList of unique identifiers for UI-assignable child RightSets, used to build UI components.[optional]
UiAssignableBooleanIndicates whether the RightSet is UI-assignable.[optional] [default to $false]
TranslatedNameStringThe translated name of the RightSet.[optional]
TranslatedDescriptionStringThe translated description of the RightSet.[optional]
ParentIdStringThe unique identifier of the parent RightSet for UI Assignable RightSet.[optional]

Examples

  • Prepare the resource
$Rightsetdto = Initialize-Rightsetdto  -Id idn:ui-right-set-example `
-Name Right Set Name `
-Description This is a description of the RightSet. `
-Category identity `
-Rights ["idn:ui-right-set-example:read","idn:ui-right-set-example:write"] `
-RightSetIds ["idn:ui-right-set-example-update","idn:ui-right-set-example-delete"] `
-UiAssignableChildRightSetIds ["idn:ui-right-set-example-detail","idn:ui-right-set-example-management"] `
-UiAssignable true `
-TranslatedName Translated Right Set Name `
-TranslatedDescription This is a translated description of the RightSet. `
-ParentId idn:ui-parent-example
  • Convert the resource to JSON
$Rightsetdto | ConvertTo-JSON

[Back to top]