adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,45 @@
---
id: source-deleted
title: SourceDeleted
pagination_label: SourceDeleted
sidebar_label: SourceDeleted
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceDeleted']
slug: /tools/sdk/powershell/v2024/models/source-deleted
tags: ['SDK', 'Software Development Kit', 'SourceDeleted']
---
# SourceDeleted
## 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]
**Deleted** | **System.DateTime** | The date and time the source was deleted. | [required]
**Connector** | **String** | The connector type used to connect to the source. | [required]
**Actor** | [**SourceDeletedActor**](source-deleted-actor) | | [required]
## Examples
- Prepare the resource
```powershell
$SourceDeleted = Initialize-PSSailpoint.V2024SourceDeleted -Id 2c9180866166b5b0016167c32ef31a66 `
-Name Test source `
-Type DIRECT_CONNECT `
-Deleted 2021-03-29T22:01:50.474Z `
-Connector active-directory `
-Actor null
```
- Convert the resource to JSON
```powershell
$SourceDeleted | ConvertTo-JSON
```
[[Back to top]](#)