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,39 @@
---
id: task-result-dto
title: TaskResultDto
pagination_label: TaskResultDto
sidebar_label: TaskResultDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TaskResultDto', 'TaskResultDto']
slug: /tools/sdk/powershell/v3/models/task-result-dto
tags: ['SDK', 'Software Development Kit', 'TaskResultDto', 'TaskResultDto']
---
# TaskResultDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "TASK_RESULT" ] | Task result DTO type. | [optional]
**Id** | Pointer to **String** | Task result ID. | [optional]
**Name** | Pointer to **String** | Task result display name. | [optional]
## Examples
- Prepare the resource
```powershell
$TaskResultDto = Initialize-PSSailpoint.V3TaskResultDto -Type TASK_RESULT `
-Id 464ae7bf791e49fdb74606a2e4a89635 `
-Name null
```
- Convert the resource to JSON
```powershell
$TaskResultDto | ConvertTo-JSON
```
[[Back to top]](#)