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

1.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-role-insights-role RoleInsightsRole RoleInsightsRole RoleInsightsRole powershellsdk
powershell
PowerShell
sdk
RoleInsightsRole
V2024RoleInsightsRole
/tools/sdk/powershell/v2024/models/role-insights-role
SDK
Software Development Kit
RoleInsightsRole
V2024RoleInsightsRole

RoleInsightsRole

Properties

Name Type Description Notes
Name Pointer to String Role name [optional]
Id Pointer to String Role id [optional]
Description Pointer to String Role description [optional]
OwnerName Pointer to String Role owner name [optional]
OwnerId Pointer to String Role owner id [optional]

Examples

  • Prepare the resource
$RoleInsightsRole = Initialize-PSSailpoint.V2024RoleInsightsRole  -Name Software Engineer `
 -Id 1467e61e-f284-439c-ba2d-c6cc11cf0941 `
 -Description Person who develops software `
 -OwnerName Bob `
 -OwnerId 1467e61e-f284-439c-ba2d-c6cc11cf0941
  • Convert the resource to JSON
$RoleInsightsRole | ConvertTo-JSON

[Back to top]