adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 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', 'AttributeValueDTO']
slug: /tools/sdk/powershell/v3/models/attribute-value-dto
tags: ['SDK', 'Software Development Kit', 'AttributeValueDTO', '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]](#)