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-service-desk-source
title: ServiceDeskSource
pagination_label: ServiceDeskSource
sidebar_label: ServiceDeskSource
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ServiceDeskSource', 'V2025ServiceDeskSource']
slug: /tools/sdk/powershell/v2025/models/service-desk-source
tags: ['SDK', 'Software Development Kit', 'ServiceDeskSource', 'V2025ServiceDeskSource']
---
# ServiceDeskSource
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "SOURCE" ] | DTO type of source for service desk integration template. | [optional]
**Id** | **String** | ID of source for service desk integration template. | [optional]
**Name** | **String** | Human-readable name of source for service desk integration template. | [optional]
## Examples
- Prepare the resource
```powershell
$ServiceDeskSource = Initialize-PSSailpoint.V2025ServiceDeskSource -Type SOURCE `
-Id 2c9180835d191a86015d28455b4b232a `
-Name HR Active Directory
```
- Convert the resource to JSON
```powershell
$ServiceDeskSource | ConvertTo-JSON
```
[[Back to top]](#)