Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ServiceDeskIntegrationTemplateDto.md
2025-05-07 14:37:48 +00:00

2.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-service-desk-integration-template-dto ServiceDeskIntegrationTemplateDto ServiceDeskIntegrationTemplateDto ServiceDeskIntegrationTemplateDto powershellsdk
powershell
PowerShell
sdk
ServiceDeskIntegrationTemplateDto
V2024ServiceDeskIntegrationTemplateDto
/tools/sdk/powershell/v2024/models/service-desk-integration-template-dto
SDK
Software Development Kit
ServiceDeskIntegrationTemplateDto
V2024ServiceDeskIntegrationTemplateDto

ServiceDeskIntegrationTemplateDto

Properties

Name Type Description Notes
Id String System-generated unique ID of the Object [optional] [readonly]
Name String Name of the Object [required]
Created System.DateTime Creation date of the Object [optional] [readonly]
Modified System.DateTime Last modification date of the Object [optional] [readonly]
Type String The 'type' property specifies the type of the Service Desk integration template. [required][default to "Web Service SDIM"]
Attributes [map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 The 'attributes' property value is a map of attributes available for integrations using this Service Desk integration template. [required]
ProvisioningConfig ProvisioningConfig [required]

Examples

  • Prepare the resource
$ServiceDeskIntegrationTemplateDto = Initialize-V2024ServiceDeskIntegrationTemplateDto  -Id id12345 `
 -Name aName `
 -Created 2015-05-28T14:07:17Z `
 -Modified 2015-05-28T14:07:17Z `
 -Type Web Service SDIM `
 -Attributes {property=value, key=value} `
 -ProvisioningConfig null
  • Convert the resource to JSON
$ServiceDeskIntegrationTemplateDto | ConvertTo-JSON

[Back to top]