Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/TaskResultDto.md
2025-05-07 14:37:48 +00:00

977 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-task-result-dto TaskResultDto TaskResultDto TaskResultDto powershellsdk
powershell
PowerShell
sdk
TaskResultDto
V2024TaskResultDto
/tools/sdk/powershell/v2024/models/task-result-dto
SDK
Software Development Kit
TaskResultDto
V2024TaskResultDto

TaskResultDto

Properties

Name Type Description Notes
Type Enum [ "TASK_RESULT" ] Task result DTO type. [optional]
Id String Task result ID. [optional]
Name String Task result display name. [optional]

Examples

  • Prepare the resource
$TaskResultDto = Initialize-V2024TaskResultDto  -Type TASK_RESULT `
 -Id 464ae7bf791e49fdb74606a2e4a89635 `
 -Name null
  • Convert the resource to JSON
$TaskResultDto | ConvertTo-JSON

[Back to top]