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,39 @@
---
id: v2025-delete-source202-response
title: DeleteSource202Response
pagination_label: DeleteSource202Response
sidebar_label: DeleteSource202Response
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DeleteSource202Response', 'V2025DeleteSource202Response']
slug: /tools/sdk/powershell/v2025/models/delete-source202-response
tags: ['SDK', 'Software Development Kit', 'DeleteSource202Response', 'V2025DeleteSource202Response']
---
# DeleteSource202Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "TASK_RESULT" ] | Type of object being referenced. | [optional]
**Id** | **String** | Task result ID. | [optional]
**Name** | **String** | Task result's human-readable display name (this should be null/empty). | [optional]
## Examples
- Prepare the resource
```powershell
$DeleteSource202Response = Initialize-PSSailpoint.V2025DeleteSource202Response -Type TASK_RESULT `
-Id 2c91808779ecf55b0179f720942f181a `
-Name null
```
- Convert the resource to JSON
```powershell
$DeleteSource202Response | ConvertTo-JSON
```
[[Back to top]](#)