adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
---
id: v2024-identity-attribute
title: IdentityAttribute
pagination_label: IdentityAttribute
sidebar_label: IdentityAttribute
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityAttribute']
slug: /tools/sdk/powershell/v2024/models/identity-attribute
tags: ['SDK', 'Software Development Kit', 'IdentityAttribute']
---
# IdentityAttribute
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | Identity attribute's technical name. | [required]
**DisplayName** | Pointer to **String** | Identity attribute's business-friendly name. | [optional]
**Standard** | Pointer to **Boolean** | Indicates whether the attribute is 'standard' or 'default'. | [optional] [default to $false]
**Type** | Pointer to **String** | Identity attribute's type. | [optional]
**Multi** | Pointer to **Boolean** | Indicates whether the identity attribute is multi-valued. | [optional] [default to $false]
**Searchable** | Pointer to **Boolean** | Indicates whether the identity attribute is searchable. | [optional] [default to $false]
**System** | Pointer to **Boolean** | Indicates whether the identity attribute is 'system', meaning that it doesn't have a source and isn't configurable. | [optional] [default to $false]
**Sources** | Pointer to [**[]Source1**](source1) | Identity attribute's list of sources - this specifies how the rule's value is derived. | [optional]
## Examples
- Prepare the resource
```powershell
$IdentityAttribute = Initialize-PSSailpoint.V2024IdentityAttribute -Name costCenter `
-DisplayName Cost Center `
-Standard false `
-Type string `
-Multi false `
-Searchable false `
-System false `
-Sources null
```
- Convert the resource to JSON
```powershell
$IdentityAttribute | ConvertTo-JSON
```
[[Back to top]](#)