Skip to main content

Userlevelrequest

Properties

NameTypeDescriptionNotes
NameStringThe name of the user level.[required]
DescriptionStringA brief description of the user level.[required]
OwnerPublicidentity[required]
RightSets[]StringA list of rights associated with the user level.[optional]

Examples

  • Prepare the resource
$Userlevelrequest = Initialize-Userlevelrequest  -Name Custom User Level Name `
-Description This is a description of the custom user level. `
-Owner null `
-RightSets ["idn:ui-right-set-list-read-example","idn:ui-right-set-write-example"]
  • Convert the resource to JSON
$Userlevelrequest | ConvertTo-JSON

[Back to top]