Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

REST API Connectors' configuration guidelines can be found here.

REST API Connectors' endpoints can be found here.

Ldap LDAP Identity Connector's type must always be specified as "ldap-identity".

You must also specify the "artifact" parameter that describes the coordinates for the connector, which by default are "com.accenture.aspire:aspire-ldap-identity-source".

The following  following Azure Identity Connectors' properties must always be set to false since these functionalities do not apply: "addHierarchy", "enableFetcher", "enableTextExtract" and "retriesEnabled", .

Easy Heading Free
navigationTitleOn this Page
wrapNavigationTexttrue
navigationExpandOptionexpand-all-by-default

Usage example

Example

Code Block
themeRDark
titlePOST /aspire/_api/connections
{
	"type": "ldap-identity",
	"description": "Ldap Identity Connector Test",
	"artifact": "com.accenture.aspire:aspire-ldap-identity-source",
	"properties": {
		"debug": true,
		"wDebug": false,
		"enableStatistics": false,
		"infoCacheSize": 100,
		"mapCacheSize": 100,
		"setCacheSize": 100,
		"identityCacheSize": 100,
		"enableFetcher": false,
		"enableTextExtract": false,
		"enable-non-text-filter": true,
		"enableFetchForNonText": true,
		"non-text-document": true,
		"nonTextDocumentsExtensions": "jpg,jpeg,gif,png,tif,mp3,mp4,mpg,mpeg,avi,mkv,wav,bmp,swf,war,rar,tgz,dll,exe,class",
		"metadataMap": [
			{
				"from": "fieldA",
				"to": "destA"
			},
			{
				"from": "fieldB",
				"to": "destB"
			}
		],
		"addHierarchy": false,
		"scanThreads": 10,
		"scanQueue": 50,
		"scanQueueTimeout": 300000,
		"processThreads": 20,
		"processQueue": 200,
		"processQueueTimeout": 300000,
		"deleteCompleteQueueEntries": false,
		"flushSyncTime": "15s",
		"maxIdentitiesTimestamp": 3,
		"workflowCleanUpThreshold": "1h",
        "workflowCleanUpWaitTime": "1m",
        "workflowErrorTolerant": false,
        "retriesEnabled": true,
        "removeFailedFromSnapshot": false,
        "useRetryPatterns": false,
        "maxInCrawlRetries": 3,
        "maxCrawls": 3
	}
}