add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2025-attr-sync-source
title: AttrSyncSource
pagination_label: AttrSyncSource
sidebar_label: AttrSyncSource
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AttrSyncSource', 'V2025AttrSyncSource']
slug: /tools/sdk/powershell/v2025/models/attr-sync-source
tags: ['SDK', 'Software Development Kit', 'AttrSyncSource', 'V2025AttrSyncSource']
---
# AttrSyncSource
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "SOURCE" ] | DTO type of target source for attribute synchronization. | [optional]
**Id** | **String** | ID of target source for attribute synchronization. | [optional]
**Name** | **String** | Human-readable name of target source for attribute synchronization. | [optional]
## Examples
- Prepare the resource
```powershell
$AttrSyncSource = Initialize-PSSailpoint.V2025AttrSyncSource -Type SOURCE `
-Id 2c9180835d191a86015d28455b4b232a `
-Name HR Active Directory
```
- Convert the resource to JSON
```powershell
$AttrSyncSource | ConvertTo-JSON
```
[[Back to top]](#)