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,37 @@
---
id: beta-identity-association-details
title: IdentityAssociationDetails
pagination_label: IdentityAssociationDetails
sidebar_label: IdentityAssociationDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentityAssociationDetails', 'BetaIdentityAssociationDetails']
slug: /tools/sdk/powershell/beta/models/identity-association-details
tags: ['SDK', 'Software Development Kit', 'IdentityAssociationDetails', 'BetaIdentityAssociationDetails']
---
# IdentityAssociationDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Message** | Pointer to **String** | any additional context information of the http call result | [optional]
**AssociationDetails** | Pointer to [**[]IdentityAssociationDetailsAssociationDetailsInner**](identity-association-details-association-details-inner) | list of all the resource associations for the identity | [optional]
## Examples
- Prepare the resource
```powershell
$IdentityAssociationDetails = Initialize-PSSailpoint.BetaIdentityAssociationDetails -Message Identity cannot be deleted as it is owner of following resources `
-AssociationDetails null
```
- Convert the resource to JSON
```powershell
$IdentityAssociationDetails | ConvertTo-JSON
```
[[Back to top]](#)