Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/TaskResultDto.md
2025-04-01 09:23:12 -04:00

989 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
v2025-task-result-dto TaskResultDto TaskResultDto TaskResultDto powershellsdk
powershell
PowerShell
sdk
TaskResultDto
V2025TaskResultDto
/tools/sdk/powershell/v2025/models/task-result-dto
SDK
Software Development Kit
TaskResultDto
V2025TaskResultDto

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-PSSailpoint.V2025TaskResultDto  -Type TASK_RESULT `
 -Id 464ae7bf791e49fdb74606a2e4a89635 `
 -Name null
  • Convert the resource to JSON
$TaskResultDto | ConvertTo-JSON

[Back to top]