Skip to main content

Connectordetail

Properties

NameTypeDescriptionNotes
NameStringThe connector name[optional]
TypeStringThe connector type[optional]
ClassNameStringThe connector class name[optional]
ScriptNameStringThe connector script name[optional]
ApplicationXmlStringThe connector application xml[optional]
CorrelationConfigXmlStringThe connector correlation config xml[optional]
SourceConfigXmlStringThe connector source config xml[optional]
SourceConfigStringThe connector source config[optional]
SourceConfigFromStringThe connector source config origin[optional]
S3LocationStringstorage path key for this connector[optional]
UploadedFiles[]StringThe list of uploaded files supported by the connector. If there was any executable files uploaded to thee connector. Typically this be empty as the executable be uploaded at source creation.[optional]
FileUploadBooleantrue if the source is file upload[optional] [default to $false]
DirectConnectBooleantrue if the source is a direct connect source[optional] [default to $false]
TranslationProperties[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4A map containing translation attributes by loacale key[optional]
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 UI to be used[optional]
StatusEnum [ "DEPRECATED", "DEVELOPMENT", "DEMO", "RELEASED" ]The connector status[optional]

Examples

  • Prepare the resource
$Connectordetail = Initialize-Connectordetail  -Name name `
-Type ServiceNow `
-ClassName class name `
-ScriptName servicenow `
-ApplicationXml <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE Application PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<Application connector="sailpoint.connector.OpenConnectorAdapter" name="custom Atlassian Suite - Cloud" type="custom Atlassian Suite - Cloud"/>
`
-CorrelationConfigXml <?xml version='1.0' encoding='UTF-8'?>
<!-- Copyright (C) 2021 SailPoint Technologies, Inc. All rights reserved. -->

<!DOCTYPE CorrelationConfig PUBLIC "sailpoint.dtd" "sailpoint.dtd">

<CorrelationConfig name="custom Atlassian Suite - Cloud Account Correlation Config">
<AttributeAssignments>
<Filter operation="EQ" property="email" value="mail"/>
<Filter operation="EQ" property="empId" value="employeeNumber"/>
<Filter operation="EQ" property="displayName" value="cn"/>
</AttributeAssignments>
</CorrelationConfig>
`
-SourceConfigXml <?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Copyright (C) 2023 SailPoint Technologies, Inc. All rights reserved. --><Form xmlns="http://www.sailpoint.com/xsd/sailpoint_form_2_0.xsd" connectorName="custom Atlassian Suite - Cloud" directConnect="true" fileUpload="true" name="Custom Atlassian Suite - Cloud" status="released" type="SourceConfig">
<BaseConfig>
<Field maxFiles="10" maxSize="300" name="fileUpload" supportedExtensions="jar" type="fileupload" validateJSON="false"/>
</BaseConfig>



</Form> `
-SourceConfig <?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Copyright (C) 2023 SailPoint Technologies, Inc. All rights reserved. --><Form xmlns="http://www.sailpoint.com/xsd/sailpoint_form_2_0.xsd" connectorName="custom Atlassian Suite - Cloud" directConnect="true" fileUpload="true" name="Custom Atlassian Suite - Cloud" status="released" type="SourceConfig">
<BaseConfig>
<Field maxFiles="10" maxSize="300" name="fileUpload" supportedExtensions="jar" type="fileupload" validateJSON="false"/>
</BaseConfig>



</Form> `
-SourceConfigFrom sp-connect `
-S3Location custom-connector/scriptname `
-UploadedFiles ["pod/org/connectorFiles/testconnector/test1.jar"] `
-FileUpload true `
-DirectConnect true `
-TranslationProperties {"de":"# Copyright (C) 2024 SailPoint Technologies, Inc. All rights reserved.\n# DO NOT EDIT. This file is generated by \"sailpointTranslate\" command.\nmenuLabel_ConnectionSettings=Verbindungseinstellungen\nmenuLabel_AggregationSettings=Aggregationseinstellungen\nsectionLabel_AuthenticationSettings=Verbindungseinstellungen\nsectionLabel_AggregationSettings=Aggregationseinstellungen\nsectionInfo_AuthenticationSettings=Konfigurieren Sie eine direkte Verbindung zwischen der Quelle Delinea Secret Server On-Premise und IdentityNow.<br><br>Geben Sie bei <strong>Zeit\\u00fcberschreitung bei Verbindung</strong> die maximal erlaubte Zeitdauer (in Minuten) f\\u00fcr die Verbindung von IdentityNow mit der Quelle ein.<br><br>Geben Sie die <strong>Host-URL</strong> der Delinea-SCIM-Serverquelle ein.<br><br>Geben Sie den <strong>API-Token</strong> der Quelle zur Authentifizierung ein.\nsectionInfo_AggregationSettings=Geben Sie die Einstellungen f\\u00fcr Ihre Aggregation an.<br><br>Geben Sie in das Feld <strong>Seitengr\\u00f6\\u00dfe</strong> die Anzahl an Kontoeintr\\u00e4gen ein, die auf einer einzelnen Seite aggregiert werden sollen, wenn gro\\u00dfe Datens\\u00e4tze durchlaufen werden.<br>\\n<br>Geben Sie im <strong>Kontofilter</strong> die Bedingungen f\\u00fcr den Kontofilter an. Beispiel: userName sw \"S\"<br><br>Geben Sie im <strong>Gruppenfilter</strong> die Gruppenfilterbedingungen an. Beispiel: displayName sw \"S\".\nplaceHolder_accAggregation=userName sw \"S\"\nplaceHolder_grpAggregation=displayName sw \"S\"\nplaceHolder_host=https://{Delinea_SCIM_Server_host}/v2\ndocLinkLabel_AuthenticationSettings=Mehr \\u00fcber Verbindungseinstellungen\ndocLinkLabel_Filters=Mehr \\u00fcber Konto- und Gruppenfilter\nHostURL=Host-URL\nConnectionTimeout=Zeit\\u00fcberschreitung bei Verbindung\nAPI_TOKEN=API-Token\nJSONPathMapping=JSON-Path-Attribut-Mapping\nFilterConditionForAccounts=Kontofilter\nFilterConditionForGroups=Gruppenfilter\nPage_Size=Seitengr\\u00f6\\u00dfe\nSchemaAttribute=Schema-Attribut\nJSONpath=JSON-Pfad\nShortDesc=Das Integrationsmodul IdentityNow f\\u00fcr Delinea Secret Server On-Premise bietet die M\\u00f6glichkeit einer tiefen Governance f\\u00fcr Konten und Gruppen. Es unterst\\u00fctzt au\\u00dferdem das End-to-End-Lebenszyklus-Management."} `
-ConnectorMetadata {"supportedUI":"EXTJS","platform":"ccg","shortDesc":"connector description"} `
-Status RELEASED
  • Convert the resource to JSON
$Connectordetail | ConvertTo-JSON

[Back to top]