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,39 @@
---
id: role-document-all-of-dimension-schema-attributes
title: RoleDocumentAllOfDimensionSchemaAttributes
pagination_label: RoleDocumentAllOfDimensionSchemaAttributes
sidebar_label: RoleDocumentAllOfDimensionSchemaAttributes
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleDocumentAllOfDimensionSchemaAttributes', 'RoleDocumentAllOfDimensionSchemaAttributes']
slug: /tools/sdk/powershell/v3/models/role-document-all-of-dimension-schema-attributes
tags: ['SDK', 'Software Development Kit', 'RoleDocumentAllOfDimensionSchemaAttributes', 'RoleDocumentAllOfDimensionSchemaAttributes']
---
# RoleDocumentAllOfDimensionSchemaAttributes
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Derived** | **Boolean** | | [optional] [default to $true]
**DisplayName** | **String** | Displayname of the dimension attribute. | [optional]
**Name** | **String** | Name of the dimension attribute. | [optional]
## Examples
- Prepare the resource
```powershell
$RoleDocumentAllOfDimensionSchemaAttributes = Initialize-PSSailpoint.V3RoleDocumentAllOfDimensionSchemaAttributes -Derived true `
-DisplayName Department `
-Name department
```
- Convert the resource to JSON
```powershell
$RoleDocumentAllOfDimensionSchemaAttributes | ConvertTo-JSON
```
[[Back to top]](#)