removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,49 +0,0 @@
---
id: attribute-dto
title: AttributeDTO
pagination_label: AttributeDTO
sidebar_label: AttributeDTO
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AttributeDTO']
slug: /tools/sdk/powershell/beta/models/attribute-dto
tags: ['SDK', 'Software Development Kit', 'AttributeDTO']
---
# AttributeDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | Pointer to **String** | Technical name of the Attribute. This is unique and cannot be changed after creation. | [optional]
**Name** | Pointer to **String** | The display name of the key. | [optional]
**Multiselect** | Pointer to **Boolean** | Indicates whether the attribute can have multiple values. | [optional] [default to $false]
**Status** | Pointer to **String** | The status of the Attribute. | [optional]
**Type** | Pointer to **String** | The type of the Attribute. This can be either ""custom"" or ""governance"". | [optional]
**ObjectTypes** | Pointer to **[]String** | An array of object types this attributes values can be applied to. Possible values are ""all"" or ""entitlement"". Value ""all"" means this attribute can be used with all object types that are supported. | [optional]
**Description** | Pointer to **String** | The description of the Attribute. | [optional]
**Values** | Pointer to [**[]AttributeValueDTO**](attribute-value-dto) | | [optional]
## Examples
- Prepare the resource
```powershell
$AttributeDTO = Initialize-PSSailpoint.BetaAttributeDTO -Key iscPrivacy `
-Name Privacy `
-Multiselect false `
-Status active `
-Type governance `
-ObjectTypes [entitlement] `
-Description Specifies the level of privacy associated with an access item. `
-Values null
```
- Convert the resource to JSON
```powershell
$AttributeDTO | ConvertTo-JSON
```
[[Back to top]](#)