test with just powershell beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:18:21 -05:00
parent 42436403b2
commit f36c734ca4
1824 changed files with 1 additions and 130758 deletions

View File

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