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,49 @@
---
id: v2024-source-account-created
title: SourceAccountCreated
pagination_label: SourceAccountCreated
sidebar_label: SourceAccountCreated
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceAccountCreated', 'V2024SourceAccountCreated']
slug: /tools/sdk/powershell/v2024/models/source-account-created
tags: ['SDK', 'Software Development Kit', 'SourceAccountCreated', 'V2024SourceAccountCreated']
---
# SourceAccountCreated
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Uuid** | Pointer to **String** | Source unique identifier for the identity. UUID is generated by the source system. | [optional]
**Id** | **String** | SailPoint generated unique identifier. | [required]
**NativeIdentifier** | **String** | Unique ID of the account on the source. | [required]
**SourceId** | **String** | The ID of the source. | [required]
**SourceName** | **String** | The name of the source. | [required]
**IdentityId** | **String** | The ID of the identity that is correlated with this account. | [required]
**IdentityName** | **String** | The name of the identity that is correlated with this account. | [required]
**Attributes** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | The attributes of the account. The contents of attributes depends on the account schema for the source. | [required]
## Examples
- Prepare the resource
```powershell
$SourceAccountCreated = Initialize-PSSailpoint.V2024SourceAccountCreated -Uuid b7264868-7201-415f-9118-b581d431c688 `
-Id ee769173319b41d19ccec35ba52f237b `
-NativeIdentifier E009 `
-SourceId 2c918082814e693601816e09471b29b6 `
-SourceName Active Directory `
-IdentityId ee769173319b41d19ccec6c235423237b `
-IdentityName john.doe `
-Attributes {firstname=John, lastname=Doe, email=john.doe@gmail.com, department=Sales, displayName=John Doe, created=2020-04-27T16:48:33.597Z, employeeNumber=E009, uid=E009, inactive=true, phone=null, identificationNumber=E009}
```
- Convert the resource to JSON
```powershell
$SourceAccountCreated | ConvertTo-JSON
```
[[Back to top]](#)