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: beta-source-creation-errors
title: SourceCreationErrors
pagination_label: SourceCreationErrors
sidebar_label: SourceCreationErrors
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceCreationErrors', 'BetaSourceCreationErrors']
slug: /tools/sdk/powershell/beta/models/source-creation-errors
tags: ['SDK', 'Software Development Kit', 'SourceCreationErrors', 'BetaSourceCreationErrors']
---
# SourceCreationErrors
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**MultihostId** | Pointer to **String** | Multi-Host Integration ID. | [optional] [readonly]
**SourceName** | Pointer to **String** | Source's human-readable name. | [optional]
**SourceError** | Pointer to **String** | Source's human-readable description. | [optional]
**Created** | Pointer to **System.DateTime** | Date-time when the source was created | [optional]
**Modified** | Pointer to **System.DateTime** | Date-time when the source was last modified. | [optional]
**Operation** | Pointer to **String** | operation category (e.g. DELETE). | [optional]
## Examples
- Prepare the resource
```powershell
$SourceCreationErrors = Initialize-PSSailpoint.BetaSourceCreationErrors -MultihostId 2c91808568c529c60168cca6f90c1324 `
-SourceName My Source `
-SourceError Source with internal name "My Source [source]" already exists. `
-Created 2022-02-08T14:50:03.827Z `
-Modified 2024-01-23T18:08:50.897Z `
-Operation DELETE
```
- Convert the resource to JSON
```powershell
$SourceCreationErrors | ConvertTo-JSON
```
[[Back to top]](#)