Update to powershell SDK docs: 13400083192

This commit is contained in:
developer-relations-sp
2025-02-18 21:09:13 +00:00
parent 63e80b2c1b
commit d8aeab4d75
78 changed files with 1364 additions and 340 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2024-result
title: Result
pagination_label: Result
sidebar_label: Result
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Result', 'V2024Result']
slug: /tools/sdk/powershell/v2024/models/result
tags: ['SDK', 'Software Development Kit', 'Result', 'V2024Result']
---
# Result
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Status** | **String** | Request result status | [optional]
## Examples
- Prepare the resource
```powershell
$Result = Initialize-PSSailpoint.V2024Result -Status Manual Task Created
```
- Convert the resource to JSON
```powershell
$Result | ConvertTo-JSON
```
[[Back to top]](#)