Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RoleSummary.md
2025-05-07 14:37:48 +00:00

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-role-summary RoleSummary RoleSummary RoleSummary powershellsdk
powershell
PowerShell
sdk
RoleSummary
V2024RoleSummary
/tools/sdk/powershell/v2024/models/role-summary
SDK
Software Development Kit
RoleSummary
V2024RoleSummary

RoleSummary

Properties

Name Type Description Notes
Id String The unique ID of the referenced object. [optional]
Name String The human readable name of the referenced object. [optional]
DisplayName String [optional]
Description String Description of access item. [optional]
Type String Type of the access item. [optional]
Owner DisplayReference [optional]
Disabled Boolean [optional]
Revocable Boolean [optional]

Examples

  • Prepare the resource
$RoleSummary = Initialize-V2024RoleSummary  -Id 2c91808568c529c60168cca6f90c1313 `
 -Name John Doe `
 -DisplayName John Q. Doe `
 -Description null `
 -Type ROLE `
 -Owner null `
 -Disabled null `
 -Revocable null
  • Convert the resource to JSON
$RoleSummary | ConvertTo-JSON

[Back to top]