Skip to main content

AccessItemRoleResponse

Properties

NameTypeDescriptionNotes
AccessTypeStringthe access item type. role in this case[optional]
IdStringthe access item id[optional]
DisplayNameStringthe role display name[optional]
DescriptionStringthe description for the role[optional]
SourceNameStringthe associated source name if it exists[optional]
RemoveDateStringthe date the role is no longer assigned to the specified identity[optional]
RevocableBooleanindicates whether the role is revocable[required]

Examples

  • Prepare the resource
$AccessItemRoleResponse = Initialize-PSSailpoint.V2024AccessItemRoleResponse  -AccessType role `
-Id 2c918087763e69d901763e72e97f006f `
-DisplayName sample `
-Description Role - Workday/Citizenship access `
-SourceName Source Name `
-RemoveDate 2024-07-01T06:00:00.00Z `
-Revocable true
  • Convert the resource to JSON
$AccessItemRoleResponse | ConvertTo-JSON

[Back to top]