mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
update to doc files
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: role-insights-response
|
||||
title: RoleInsightsResponse
|
||||
pagination_label: RoleInsightsResponse
|
||||
sidebar_label: RoleInsightsResponse
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleInsightsResponse']
|
||||
slug: /tools/sdk/powershell/beta/models/role-insights-response
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleInsightsResponse']
|
||||
---
|
||||
|
||||
|
||||
# RoleInsightsResponse
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | Request Id for a role insight generation request | [optional]
|
||||
**CreatedDate** | Pointer to **System.DateTime** | The date-time role insights request was created. | [optional]
|
||||
**LastGenerated** | Pointer to **System.DateTime** | The date-time role insights request was completed. | [optional]
|
||||
**NumberOfUpdates** | Pointer to **Int32** | Total number of updates for this request. Starts with 0 and will have correct number when request is COMPLETED. | [optional]
|
||||
**RoleIds** | Pointer to **[]String** | The role IDs that are in this request. | [optional]
|
||||
**Status** | Pointer to **Enum** [ "CREATED", "IN PROGRESS", "COMPLETED", "FAILED" ] | Request status | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$RoleInsightsResponse = Initialize-PSSailpoint.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
|
||||
```powershell
|
||||
$RoleInsightsResponse | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user