Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/RoleInsight.md
2025-02-03 22:09:17 +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
beta-role-insight RoleInsight RoleInsight RoleInsight powershellsdk
powershell
PowerShell
sdk
RoleInsight
BetaRoleInsight
/tools/sdk/powershell/beta/models/role-insight
SDK
Software Development Kit
RoleInsight
BetaRoleInsight

RoleInsight

Properties

Name Type Description Notes
Id String Insight id [optional]
NumberOfUpdates Int32 Total number of updates for this role [optional]
CreatedDate System.DateTime The date-time insights were last created for this role. [optional]
ModifiedDate System.DateTime The date-time insights were last modified for this role. [optional]
Role RoleInsightsRole [optional]
Insight RoleInsightsInsight [optional]

Examples

  • Prepare the resource
$RoleInsight = Initialize-PSSailpoint.BetaRoleInsight  -Id 1467e61e-f284-439c-ba2d-c6cc11cf0941 `
 -NumberOfUpdates 5 `
 -CreatedDate null `
 -ModifiedDate 2020-05-19T13:49:37.385Z `
 -Role null `
 -Insight null
  • Convert the resource to JSON
$RoleInsight | ConvertTo-JSON

[Back to top]