mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user