adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: attribute-value-dto
title: AttributeValueDTO
pagination_label: AttributeValueDTO
sidebar_label: AttributeValueDTO
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AttributeValueDTO']
slug: /tools/sdk/powershell/v3/models/attribute-value-dto
tags: ['SDK', 'Software Development Kit', 'AttributeValueDTO']
---
# AttributeValueDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Value** | Pointer to **String** | Technical name of the Attribute value. This is unique and cannot be changed after creation. | [optional]
**Name** | Pointer to **String** | The display name of the Attribute value. | [optional]
**Status** | Pointer to **String** | The status of the Attribute value. | [optional]
## Examples
- Prepare the resource
```powershell
$AttributeValueDTO = Initialize-PSSailpoint.V3AttributeValueDTO -Value public `
-Name Public `
-Status active
```
- Convert the resource to JSON
```powershell
$AttributeValueDTO | ConvertTo-JSON
```
[[Back to top]](#)