Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/V3ConnectorDto.md
2025-02-28 14:46:13 +00:00

1.8 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-v3-connector-dto V3ConnectorDto V3ConnectorDto V3ConnectorDto powershellsdk
powershell
PowerShell
sdk
V3ConnectorDto
V2024V3ConnectorDto
/tools/sdk/powershell/v2024/models/v3-connector-dto
SDK
Software Development Kit
V3ConnectorDto
V2024V3ConnectorDto

V3ConnectorDto

Properties

Name Type Description Notes
Name String The connector name [optional]
Type String The connector type [optional]
ScriptName String The connector script name [optional]
ClassName String The connector class name. [optional]
Features []String The list of features supported by the connector [optional]
DirectConnect Boolean true 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.4 A map containing metadata pertinent to the connector [optional]
Status Enum [ "DEPRECATED", "DEVELOPMENT", "DEMO", "RELEASED" ] The connector status [optional]

Examples

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