mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
only beta
This commit is contained in:
@@ -1,59 +0,0 @@
|
||||
---
|
||||
id: v2024-service-desk-integration-dto
|
||||
title: ServiceDeskIntegrationDto
|
||||
pagination_label: ServiceDeskIntegrationDto
|
||||
sidebar_label: ServiceDeskIntegrationDto
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ServiceDeskIntegrationDto']
|
||||
slug: /tools/sdk/powershell/v2024/models/service-desk-integration-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'ServiceDeskIntegrationDto']
|
||||
---
|
||||
|
||||
|
||||
# ServiceDeskIntegrationDto
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | Unique identifier for the Service Desk integration | [optional]
|
||||
**Name** | **String** | Service Desk integration's name. The name must be unique. | [required]
|
||||
**Created** | Pointer to **System.DateTime** | The date and time the Service Desk integration was created | [optional]
|
||||
**Modified** | Pointer to **System.DateTime** | The date and time the Service Desk integration was last modified | [optional]
|
||||
**Description** | **String** | Service Desk integration's description. | [required]
|
||||
**Type** | **String** | Service Desk integration types: - ServiceNowSDIM - ServiceNow | [required][default to "ServiceNowSDIM"]
|
||||
**OwnerRef** | Pointer to [**OwnerDto**](owner-dto) | | [optional]
|
||||
**ClusterRef** | Pointer to [**SourceClusterDto**](source-cluster-dto) | | [optional]
|
||||
**Cluster** | Pointer to **String** | Cluster ID for the Service Desk integration (replaced by clusterRef, retained for backward compatibility). | [optional]
|
||||
**ManagedSources** | Pointer to **[]String** | Source IDs for the Service Desk integration (replaced by provisioningConfig.managedSResourceRefs, but retained here for backward compatibility). | [optional]
|
||||
**ProvisioningConfig** | Pointer to [**ProvisioningConfig**](provisioning-config) | | [optional]
|
||||
**Attributes** | [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | Service Desk integration's attributes. Validation constraints enforced by the implementation. | [required]
|
||||
**BeforeProvisioningRule** | Pointer to [**BeforeProvisioningRuleDto**](before-provisioning-rule-dto) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ServiceDeskIntegrationDto = Initialize-PSSailpoint.V2024ServiceDeskIntegrationDto -Id 62945a496ef440189b1f03e3623411c8 `
|
||||
-Name Service Desk Integration Name `
|
||||
-Created 2024-01-17T18:45:25.994Z `
|
||||
-Modified 2024-02-18T18:45:25.994Z `
|
||||
-Description A very nice Service Desk integration `
|
||||
-Type ServiceNowSDIM `
|
||||
-OwnerRef null `
|
||||
-ClusterRef null `
|
||||
-Cluster xyzzy999 `
|
||||
-ManagedSources [2c9180835d191a86015d28455b4a2329, 2c5680835d191a85765d28455b4a9823] `
|
||||
-ProvisioningConfig null `
|
||||
-Attributes {property=value, key=value} `
|
||||
-BeforeProvisioningRule null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ServiceDeskIntegrationDto | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user