Update to powershell SDK docs: 14132734151

This commit is contained in:
developer-relations-sp
2025-03-28 15:47:21 +00:00
parent 74a9e68543
commit 505a2245eb
31 changed files with 3035 additions and 226 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2024-source-creation-errors
title: SourceCreationErrors
pagination_label: SourceCreationErrors
sidebar_label: SourceCreationErrors
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SourceCreationErrors', 'V2024SourceCreationErrors']
slug: /tools/sdk/powershell/v2024/models/source-creation-errors
tags: ['SDK', 'Software Development Kit', 'SourceCreationErrors', 'V2024SourceCreationErrors']
---
# SourceCreationErrors
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**MultihostId** | **String** | Multi-Host Integration ID. | [optional] [readonly]
**SourceName** | **String** | Source's human-readable name. | [optional]
**SourceError** | **String** | Source's human-readable description. | [optional]
**Created** | **System.DateTime** | Date-time when the source was created | [optional]
**Modified** | **System.DateTime** | Date-time when the source was last modified. | [optional]
**Operation** | **String** | operation category (e.g. DELETE). | [optional]
## Examples
- Prepare the resource
```powershell
$SourceCreationErrors = Initialize-PSSailpoint.V2024SourceCreationErrors -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]](#)