mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-role-insight
|
||||
title: RoleInsight
|
||||
pagination_label: RoleInsight
|
||||
sidebar_label: RoleInsight
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleInsight', 'V2024RoleInsight']
|
||||
slug: /tools/sdk/powershell/v2024/models/role-insight
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleInsight', 'V2024RoleInsight']
|
||||
---
|
||||
|
||||
|
||||
# RoleInsight
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | Insight id | [optional]
|
||||
**NumberOfUpdates** | Pointer to **Int32** | Total number of updates for this role | [optional]
|
||||
**CreatedDate** | Pointer to **System.DateTime** | The date-time insights were last created for this role. | [optional]
|
||||
**ModifiedDate** | Pointer to **System.DateTime** | The date-time insights were last modified for this role. | [optional]
|
||||
**Role** | Pointer to [**RoleInsightsRole**](role-insights-role) | | [optional]
|
||||
**Insight** | Pointer to [**RoleInsightsInsight**](role-insights-insight) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$RoleInsight = Initialize-PSSailpoint.V2024RoleInsight -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
|
||||
```powershell
|
||||
$RoleInsight | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user