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,45 @@
---
id: v2024-source-created
title: SourceCreated
pagination_label: SourceCreated
sidebar_label: SourceCreated
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceCreated', 'V2024SourceCreated']
slug: /tools/sdk/powershell/v2024/models/source-created
tags: ['SDK', 'Software Development Kit', 'SourceCreated', 'V2024SourceCreated']
---
# SourceCreated
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The unique ID of the source. | [required]
**Name** | **String** | Human friendly name of the source. | [required]
**Type** | **String** | The connection type. | [required]
**Created** | **System.DateTime** | The date and time the source was created. | [required]
**Connector** | **String** | The connector type used to connect to the source. | [required]
**Actor** | [**SourceCreatedActor**](source-created-actor) | | [required]
## Examples
- Prepare the resource
```powershell
$SourceCreated = Initialize-PSSailpoint.V2024SourceCreated -Id 2c9180866166b5b0016167c32ef31a66 `
-Name Test source `
-Type DIRECT_CONNECT `
-Created 2021-03-29T22:01:50.474Z `
-Connector active-directory `
-Actor null
```
- Convert the resource to JSON
```powershell
$SourceCreated | ConvertTo-JSON
```
[[Back to top]](#)