add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
---
id: v2025-task-result-simplified
title: TaskResultSimplified
pagination_label: TaskResultSimplified
sidebar_label: TaskResultSimplified
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TaskResultSimplified', 'V2025TaskResultSimplified']
slug: /tools/sdk/powershell/v2025/models/task-result-simplified
tags: ['SDK', 'Software Development Kit', 'TaskResultSimplified', 'V2025TaskResultSimplified']
---
# TaskResultSimplified
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Task identifier | [optional]
**Name** | **String** | Task name | [optional]
**Description** | **String** | Task description | [optional]
**Launcher** | **String** | User or process who launched the task | [optional]
**Completed** | **System.DateTime** | Date time of completion | [optional]
**Launched** | **System.DateTime** | Date time when the task was launched | [optional]
**CompletionStatus** | **Enum** [ "Success", "Warning", "Error", "Terminated", "TempError" ] | Task result status | [optional]
## Examples
- Prepare the resource
```powershell
$TaskResultSimplified = Initialize-PSSailpoint.V2025TaskResultSimplified -Id ff8081814d977c21014da056804a0af3 `
-Name Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d `
-Description Generic task for terminating data in the overlay, used by the TerminationService. `
-Launcher support `
-Completed null `
-Launched null `
-CompletionStatus Success
```
- Convert the resource to JSON
```powershell
$TaskResultSimplified | ConvertTo-JSON
```
[[Back to top]](#)