Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/GetRoleAssignments200ResponseInner.md
2025-01-28 13:29:29 -05:00

2.2 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-get-role-assignments200-response-inner GetRoleAssignments200ResponseInner GetRoleAssignments200ResponseInner GetRoleAssignments200ResponseInner powershellsdk
powershell
PowerShell
sdk
GetRoleAssignments200ResponseInner
V2024GetRoleAssignments200ResponseInner
/tools/sdk/powershell/v2024/models/get-role-assignments200-response-inner
SDK
Software Development Kit
GetRoleAssignments200ResponseInner
V2024GetRoleAssignments200ResponseInner

GetRoleAssignments200ResponseInner

Properties

Name Type Description Notes
Id Pointer to String Assignment Id [optional]
Role Pointer to BaseReferenceDto1 [optional]
Comments Pointer to String Comments added by the user when the assignment was made [optional]
AssignmentSource Pointer to String Source describing how this assignment was made [optional]
Assigner Pointer to BaseReferenceDto1 [optional]
AssignedDimensions Pointer to []BaseReferenceDto1 Dimensions assigned related to this role [optional]
AssignmentContext Pointer to AssignmentContextDto [optional]
AccountTargets Pointer to []RoleTargetDto [optional]
RemoveDate Pointer to String Date that the assignment will be removed [optional]

Examples

  • Prepare the resource
$GetRoleAssignments200ResponseInner = Initialize-PSSailpoint.V2024GetRoleAssignments200ResponseInner  -Id 1cbb0705b38c4226b1334eadd8874086 `
 -Role null `
 -Comments I'm a new Engineer and need this role to do my work `
 -AssignmentSource UI `
 -Assigner null `
 -AssignedDimensions [{id=1acc8ffe5fcf457090de28bee2af36ee, type=DIMENSION, name=Northeast region}] `
 -AssignmentContext null `
 -AccountTargets null `
 -RemoveDate Wed Feb 14 10:58:42
  • Convert the resource to JSON
$GetRoleAssignments200ResponseInner | ConvertTo-JSON

[Back to top]