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,41 @@
---
id: beta-get-reference-identity-attribute
title: GetReferenceIdentityAttribute
pagination_label: GetReferenceIdentityAttribute
sidebar_label: GetReferenceIdentityAttribute
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'GetReferenceIdentityAttribute', 'BetaGetReferenceIdentityAttribute']
slug: /tools/sdk/powershell/beta/models/get-reference-identity-attribute
tags: ['SDK', 'Software Development Kit', 'GetReferenceIdentityAttribute', 'BetaGetReferenceIdentityAttribute']
---
# GetReferenceIdentityAttribute
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | This must always be set to ""Cloud Services Deployment Utility"" | [required]
**Operation** | **String** | The operation to perform `getReferenceIdentityAttribute` | [required]
**Uid** | **String** | This is the SailPoint User Name (uid) value of the identity whose attribute is desired As a convenience feature, you can use the `manager` keyword to dynamically look up the user's manager and then get that manager's identity attribute. | [required]
**RequiresPeriodicRefresh** | Pointer to **Boolean** | A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process | [optional]
## Examples
- Prepare the resource
```powershell
$GetReferenceIdentityAttribute = Initialize-PSSailpoint.BetaGetReferenceIdentityAttribute -Name Cloud Services Deployment Utility `
-Operation getReferenceIdentityAttribute `
-Uid 2c91808570313110017040b06f344ec9 `
-RequiresPeriodicRefresh false
```
- Convert the resource to JSON
```powershell
$GetReferenceIdentityAttribute | ConvertTo-JSON
```
[[Back to top]](#)