Skip to main content

UserLevelSummaryDTO

Properties

NameTypeDescriptionNotes
IdStringThe unique identifier of the UserLevel.[optional]
NameStringThe human-readable name of the UserLevel.[optional]
DescriptionStringA human-readable description of the UserLevel.[optional]
LegacyGroupStringThe legacy group associated with the UserLevel, used for backward compatibility for the UserLevel id.[optional]
RightSets[]RightSetDTOList of RightSets associated with the UserLevel.[optional]
CustomBooleanIndicates whether the UserLevel is custom.[optional] [default to $true]
AdminAssignableBooleanIndicates whether the UserLevel is admin-assignable.[optional] [default to $true]
TranslatedNameStringThe translated name of the UserLevel.[optional]
TranslatedGrantStringThe translated grant message for the UserLevel.[optional]
TranslatedRemoveStringThe translated remove message for the UserLevel.[optional]
OwnerBaseReferenceDto[optional]
StatusEnum [ "ACTIVE", "DRAFT" ]The status of the UserLevel.[optional]
CreatedSystem.DateTimeThe creation timestamp of the UserLevel.[optional]
ModifiedSystem.DateTimeThe last modification timestamp of the UserLevel.[optional]
AssociatedIdentitiesCountInt32The count of associated identities for the UserLevel.[optional]

Examples

  • Prepare the resource
$UserLevelSummaryDTO = Initialize-V2025UserLevelSummaryDTO  -Id beb02a57-010f-4c29-a6d2-fae9628bda73 `
-Name Custom User Level Name `
-Description This is a description of the CustomUserLevel. `
-LegacyGroup ORG_ADMIN `
-RightSets null `
-Custom true `
-AdminAssignable true `
-TranslatedName Translated Custom User Level Name `
-TranslatedGrant Grant Message `
-TranslatedRemove Remove Message `
-Owner null `
-Status Active `
-Created 2023-01-01T12:00Z `
-Modified 2023-01-02T12:00Z `
-AssociatedIdentitiesCount 10
  • Convert the resource to JSON
$UserLevelSummaryDTO | ConvertTo-JSON

[Back to top]