Skip to main content

ServiceDeskIntegrationTemplateDto

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]
TypeStringThe '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.4The 'attributes' property value is a map of attributes available for integrations using this Service Desk integration template.[required]
ProvisioningConfigProvisioningConfig[required]

Examples

  • Prepare the resource
$ServiceDeskIntegrationTemplateDto = Initialize-PSSailpoint.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]