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: public-identity-attributes-inner
title: PublicIdentityAttributesInner
pagination_label: PublicIdentityAttributesInner
sidebar_label: PublicIdentityAttributesInner
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'PublicIdentityAttributesInner', 'PublicIdentityAttributesInner']
slug: /tools/sdk/powershell/v3/models/public-identity-attributes-inner
tags: ['SDK', 'Software Development Kit', 'PublicIdentityAttributesInner', 'PublicIdentityAttributesInner']
---
# PublicIdentityAttributesInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Key** | Pointer to **String** | The attribute key | [optional]
**Name** | Pointer to **String** | Human-readable display name of the attribute | [optional]
**Value** | Pointer to **String** | The attribute value | [optional]
## Examples
- Prepare the resource
```powershell
$PublicIdentityAttributesInner = Initialize-PSSailpoint.V3PublicIdentityAttributesInner -Key country `
-Name Country `
-Value US
```
- Convert the resource to JSON
```powershell
$PublicIdentityAttributesInner | ConvertTo-JSON
```
[[Back to top]](#)