Update to powershell SDK docs: 13400083192

This commit is contained in:
developer-relations-sp
2025-02-18 21:09:13 +00:00
parent 63e80b2c1b
commit d8aeab4d75
78 changed files with 1364 additions and 340 deletions

View File

@@ -0,0 +1,43 @@
---
id: role-document-all-of-dimensions
title: RoleDocumentAllOfDimensions
pagination_label: RoleDocumentAllOfDimensions
sidebar_label: RoleDocumentAllOfDimensions
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleDocumentAllOfDimensions', 'RoleDocumentAllOfDimensions']
slug: /tools/sdk/powershell/v3/models/role-document-all-of-dimensions
tags: ['SDK', 'Software Development Kit', 'RoleDocumentAllOfDimensions', 'RoleDocumentAllOfDimensions']
---
# RoleDocumentAllOfDimensions
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Unique ID of the dimension. | [optional]
**Name** | **String** | Name of the dimension. | [optional]
**Description** | **String** | Description of the dimension. | [optional]
**Entitlements** | [**[]RoleDocumentAllOfEntitlements1**](role-document-all-of-entitlements1) | Entitlements included with the role. | [optional]
**AccessProfiles** | [**[]BaseAccessProfile**](base-access-profile) | Access profiles included in the dimension. | [optional]
## Examples
- Prepare the resource
```powershell
$RoleDocumentAllOfDimensions = Initialize-PSSailpoint.V3RoleDocumentAllOfDimensions -Id b3c28992ba964a40a7598978139d1ced `
-Name Manager Austin Branch `
-Description Managers located at the Austin branch `
-Entitlements null `
-AccessProfiles null
```
- Convert the resource to JSON
```powershell
$RoleDocumentAllOfDimensions | ConvertTo-JSON
```
[[Back to top]](#)