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

1.6 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
beta-role-insights-response RoleInsightsResponse RoleInsightsResponse RoleInsightsResponse powershellsdk
powershell
PowerShell
sdk
RoleInsightsResponse
BetaRoleInsightsResponse
/tools/sdk/powershell/beta/models/role-insights-response
SDK
Software Development Kit
RoleInsightsResponse
BetaRoleInsightsResponse

RoleInsightsResponse

Properties

Name Type Description Notes
Id String Request Id for a role insight generation request [optional]
CreatedDate System.DateTime The date-time role insights request was created. [optional]
LastGenerated System.DateTime The date-time role insights request was completed. [optional]
NumberOfUpdates Int32 Total number of updates for this request. Starts with 0 and will have correct number when request is COMPLETED. [optional]
RoleIds []String The role IDs that are in this request. [optional]
Status Enum [ "CREATED", "IN PROGRESS", "COMPLETED", "FAILED" ] Request status [optional]

Examples

  • Prepare the resource
$RoleInsightsResponse = Initialize-BetaRoleInsightsResponse  -Id 8c190e67-87aa-4ed9-a90b-d9d5344523fb `
 -CreatedDate 2020-09-16T18:49:32.150Z `
 -LastGenerated 2020-09-16T18:50:12.150Z `
 -NumberOfUpdates 0 `
 -RoleIds null `
 -Status null
  • Convert the resource to JSON
$RoleInsightsResponse | ConvertTo-JSON

[Back to top]