Skip to main content

V3ConnectorDto

Properties

NameTypeDescriptionNotes
NameStringThe connector name[optional]
TypeStringThe connector type[optional]
ScriptNameStringThe connector script name[optional]
ClassNameStringThe connector class name.[optional]
Features[]StringThe list of features supported by the connector[optional]
DirectConnectBooleantrue if the source is a direct connect source[optional] [default to $false]
ConnectorMetadata[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4A map containing metadata pertinent to the connector[optional]
StatusEnum [ "DEPRECATED", "DEVELOPMENT", "DEMO", "RELEASED" ]The connector status[optional]

Examples

  • Prepare the resource
$V3ConnectorDto = Initialize-PSSailpoint.V3V3ConnectorDto  -Name name `
-Type ServiceNow `
-ScriptName servicenow `
-ClassName sailpoint.connector.OpenConnectorAdapter `
-Features [PROVISIONING, SYNC_PROVISIONING, SEARCH, UNSTRUCTURED_TARGETS] `
-DirectConnect true `
-ConnectorMetadata {supportedUI=ANGULAR, platform=ccg, shortDesc=connector description} `
-Status RELEASED
  • Convert the resource to JSON
$V3ConnectorDto | ConvertTo-JSON

[Back to top]