mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
Update to powershell SDK docs: 13400083192
This commit is contained in:
@@ -16,9 +16,6 @@ tags: ['SDK', 'Software Development Kit', 'RoleDocument', 'V2024RoleDocument']
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | **String** | The unique ID of the referenced object. | [required]
|
||||
**Name** | **String** | The human readable name of the referenced object. | [required]
|
||||
**Type** | [**DocumentType**](document-type) | | [required]
|
||||
**Description** | **String** | Access item's description. | [optional]
|
||||
**Created** | **System.DateTime** | ISO-8601 date-time referring to the time when the object was created. | [optional]
|
||||
**Modified** | **System.DateTime** | ISO-8601 date-time referring to the time when the object was last modified. | [optional]
|
||||
@@ -26,23 +23,26 @@ Name | Type | Description | Notes
|
||||
**Enabled** | **Boolean** | Indicates whether the access item is currently enabled. | [optional] [default to $false]
|
||||
**Requestable** | **Boolean** | Indicates whether the access item can be requested. | [optional] [default to $true]
|
||||
**RequestCommentsRequired** | **Boolean** | Indicates whether comments are required for requests to access the item. | [optional] [default to $false]
|
||||
**Owner** | [**BaseAccessAllOfOwner**](base-access-all-of-owner) | | [optional]
|
||||
**Owner** | [**BaseAccessOwner**](base-access-owner) | | [optional]
|
||||
**Id** | **String** | ID of the role. | [required]
|
||||
**Name** | **String** | Name of the role. | [required]
|
||||
**AccessProfiles** | [**[]BaseAccessProfile**](base-access-profile) | Access profiles included with the role. | [optional]
|
||||
**AccessProfileCount** | **Int32** | Number of access profiles included with the role. | [optional]
|
||||
**Tags** | **[]String** | Tags that have been applied to the object. | [optional]
|
||||
**Segments** | [**[]BaseSegment**](base-segment) | Segments with the role. | [optional]
|
||||
**SegmentCount** | **Int32** | Number of segments with the role. | [optional]
|
||||
**Entitlements** | [**[]BaseEntitlement**](base-entitlement) | Entitlements included with the role. | [optional]
|
||||
**Entitlements** | [**[]RoleDocumentAllOfEntitlements**](role-document-all-of-entitlements) | Entitlements included with the role. | [optional]
|
||||
**EntitlementCount** | **Int32** | Number of entitlements included with the role. | [optional]
|
||||
**Dimensional** | **Boolean** | | [optional] [default to $false]
|
||||
**DimensionSchemaAttributeCount** | **Int32** | Number of dimension attributes included with the role. | [optional]
|
||||
**DimensionSchemaAttributes** | [**[]RoleDocumentAllOfDimensionSchemaAttributes**](role-document-all-of-dimension-schema-attributes) | Dimension attributes included with the role. | [optional]
|
||||
**Dimensions** | [**[]RoleDocumentAllOfDimensions**](role-document-all-of-dimensions) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$RoleDocument = Initialize-PSSailpoint.V2024RoleDocument -Id 2c91808568c529c60168cca6f90c1313 `
|
||||
-Name John Doe `
|
||||
-Type null `
|
||||
-Description The admin role `
|
||||
$RoleDocument = Initialize-PSSailpoint.V2024RoleDocument -Description Admin access `
|
||||
-Created 2018-06-25T20:22:28.104Z `
|
||||
-Modified 2018-06-25T20:22:28.104Z `
|
||||
-Synced 2018-06-25T20:22:33.104Z `
|
||||
@@ -50,13 +50,19 @@ $RoleDocument = Initialize-PSSailpoint.V2024RoleDocument -Id 2c91808568c529c601
|
||||
-Requestable true `
|
||||
-RequestCommentsRequired false `
|
||||
-Owner null `
|
||||
-Id 2c91808375d8e80a0175e1f88a575222 `
|
||||
-Name Branch Manager Access `
|
||||
-AccessProfiles null `
|
||||
-AccessProfileCount 1 `
|
||||
-Tags [TAG_1, TAG_2] `
|
||||
-Segments null `
|
||||
-SegmentCount 1 `
|
||||
-Entitlements null `
|
||||
-EntitlementCount 3
|
||||
-EntitlementCount 3 `
|
||||
-Dimensional false `
|
||||
-DimensionSchemaAttributeCount 3 `
|
||||
-DimensionSchemaAttributes null `
|
||||
-Dimensions null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
Reference in New Issue
Block a user