Skip to main content

V3CreateConnectorDto

Properties

NameTypeDescriptionNotes
NameStringThe connector name. Need to be unique per tenant. The name will able be used to derive a url friendly unique scriptname that will be in response. Script name can then be used for all update endpoints[required]
TypeStringThe connector type. If not specified will be defaulted to 'custom '+name[optional]
ClassNameStringThe connector class name. If you are implementing openconnector standard (what is recommended), then this need to be set to sailpoint.connector.OpenConnectorAdapter[required]
DirectConnectBooleantrue if the source is a direct connect source[optional] [default to $true]
StatusEnum [ "DEVELOPMENT", "DEMO", "RELEASED" ]The connector status[optional]

Examples

  • Prepare the resource
$V3CreateConnectorDto = Initialize-PSSailpoint.V2024V3CreateConnectorDto  -Name custom connector `
-Type custom connector type `
-ClassName sailpoint.connector.OpenConnectorAdapter `
-DirectConnect true `
-Status RELEASED
  • Convert the resource to JSON
$V3CreateConnectorDto | ConvertTo-JSON

[Back to top]