3.2 Advanced Settings Parameters
These are the configuration-related entries that the connector uses during reconciliation and provisioning operations.
Note:
- Unless specified, do not modify entries in the below table.
- All parameters in the table below are mandatory.
Table 3-2 Advanced Settings Parameters
Parameter | Mandatory? | Description |
---|---|---|
Connector Name | Yes |
This entry holds the name of the connector class. Default value: org.identityconnectors.cernerhealtheintent.CernerHealtheintentConnector |
Bundle Name | Yes |
This entry holds the name of the connector bundle. Default value: org.identityconnectors.cernerhealtheintent |
Bundle Version | Yes |
This entry holds the version of the connector bundle. Default value: 12.3.0 |
relURIs | Yes |
This entry holds the relative URL of every object class supported by this connector and the connector operations that can be performed on these object classes. Default value: "__ACCOUNT__.SEARCHOP=/personnel/v1/personnel?$(Filter Suffix)$&offset=$(PAGE_OFFSET)$&limit=$(PAGE_SIZE)$","__ACCOUNT__.CREATEOP=/personnel/v1/personnel","__ACCOUNT__.UPDATEOP=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.DELETEOP=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.ADDATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.REMOVEATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.__GROUP__.SEARCHOP=/personnel/v1/personnel-groups?excludeDynamic=true","__ACCOUNT__.__GROUP__.REMOVEATTRIBUTE=/personnel/v1/personnel-groups/$(__GROUP__.id)$/members/$(__UID__)$","__ACCOUNT__.__GROUP__.ADDATTRIBUTE=/personnel/v1/personnel-groups/$(__GROUP__.id)$/members/$(__UID__)$","__ACCOUNT__.__ORGANIZATION__.SEARCHOP=/organization/v1/personnel/$(__UID__)$/organizations&offset=$(PAGE_OFFSET)$&limit=$(PAGE_SIZE)$","__ACCOUNT__.__ORGANIZATION__.ADDATTRIBUTE=/organization/v1/organizations/$(__ORGANIZATION__.id)$/members/$(__UID__)$","__ACCOUNT__.__ORGANIZATION__.REMOVEATTRIBUTE=/organization/v1/organizations/$(__ORGANIZATION__.id)$/members/$(__UID__)$","__ACCOUNT__.__DYNAMICGROUP__.SEARCHOP=/personnel/v1/dynamic-personnel-groups","__ACCOUNT__.sourceIdentifiers.ADDATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.sourceIdentifiers.REMOVEATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.aliases.ADDATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.aliases.REMOVEATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.languages.ADDATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.languages.REMOVEATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.emailAddresses.ADDATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.emailAddresses.REMOVEATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.phoneNumbers.ADDATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.phoneNumbers.REMOVEATTRIBUTE=/personnel/v1/personnel/$(__UID__)$","__ACCOUNT__.__ORGANIZATION__.SEARCHOP=/organization/v1/personnel/$(__UID__)$/organizations","__DYNAMICGROUP__.SEARCHOP=/personnel/v1/dynamic-personnel-groups?&offset=$(PAGE_OFFSET)$&limit=$(PAGE_SIZE)$","__ORGANIZATION__.SEARCHOP=/organization/v1/organizations?&offset=$(PAGE_OFFSET)$&limit=$(PAGE_SIZE)$","__GROUP__.SEARCHOP=/personnel/v1/personnel-groups?excludeDynamic=true&offset=$(PAGE_OFFSET)$&limit=$(PAGE_SIZE)$","__DATAPARTITIONID__.SEARCHOP=/data-ingestion/v1/data-partitions?&offset=$(PAGE_OFFSET)$&limit=$(PAGE_SIZE)$" |
opTypes | Yes |
This entry specifies the HTTP operation type for each object class supported by the connector. Values are comma separated and are in the following format: OBJ_CLASS.OP=HTTP_OP In this format, OBJ_CLASS is the connector object class, OP is the connector operation (for example, CreateOp, UpdateOp, SearchOp), and HTTP_OP is the HTTP operation (GET, PUT, or POST). Default value: "__ACCOUNT__.SEARCHOP=GET","__ACCOUNT__.CREATEOP=POST","__ACCOUNT__.UPDATEOP=PUT","__ACCOUNT__.ADDATTRIBUTE=PUT","__ACCOUNT__.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.DELETEOP=DELETE","__GROUP__.SEARCHOP=GET","__ACCOUNT__.__GROUP__.SEARCHOP=GET","__ACCOUNT__.__GROUP__.ADDATTRIBUTE=PUT","__ACCOUNT__.__GROUP__.REMOVEATTRIBUTE=DELETE","__ORGANIZATION__.SEARCHOP=GET","__ACCOUNT__.__ORGANIZATION__.SEARCHOP=GET","__ACCOUNT__.__ORGANIZATION__.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.__ORGANIZATION__.ADDATTRIBUTE=PUT","__DYNAMICGROUP__.SEARCHOP=GET","__ACCOUNT__.__DYNAMICGROUP__.SEARCHOP=GET","__ACCOUNT__.__DYNAMICGROUP__.ADDATTRIBUTE=PUT","__ACCOUNT__.__DYNAMICGROUP__.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.emailAddresses.ADDATTRIBUTE=PUT","__ACCOUNT__.emailAddresses.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.aliases.ADDATTRIBUTE=PUT","__ACCOUNT__.aliases.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.sourceIdentifiers.ADDATTRIBUTE=PUT","__ACCOUNT__.sourceIdentifiers.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.languages.ADDATTRIBUTE=PUT","__ACCOUNT__.languages.REMOVEATTRIBUTE=DELETE","__ACCOUNT__.phoneNumbers.ADDATTRIBUTE=PUT","__ACCOUNT__.phoneNumbers.REMOVEATTRIBUTE=DELETE","__DATAPARTITIONID__.SEARCHOP=GET" |
customPayload | No |
This entry lists the payloads for all operations that are not in the standard format. Default value: "__ACCOUNT__.__GROUP__.ADDATTRIBUTE={}","__ACCOUNT__.__GROUP__.REMOVEATTRIBUTE={}","__ACCOUNT__.__ORGANIZATION__.ADDATTRIBUTE={}","__ACCOUNT__.__ORGANIZATION__.REMOVEATTRIBUTE={}" |
nameAttributes | Yes |
This entry holds the name attribute for all the objects that are handled by this connector. For example, __NAME__ for the __ACCOUNT__each object class that it used for User accounts, the name attribute is user_name." Default value: "__ACCOUNT__.fullName","__GROUP__.name","__ORGANIZATION__.name","__DYNAMICGROUP__.name","__DATAPARTITIONID__.name" |
uidAttributes | Yes |
This entry holds the UID attribute for all the objects that are handled by this connector. For example, __UID__ for each object class. Default value: "__ACCOUNT__.id","__GROUP__.id","__ORGANIZATION__.id","__DYNAMICGROUP__.id","__DATAPARTITIONID__.id","sourceIdentifiers.id","emailAddresses.value","phoneNumbers.value","aliases.value","languages.languages" |
httpHeaderContentType | No |
This entry holds the content type expected by the target system in the header. Default value: application/json |
httpHeaderAccept | No |
This entry holds the accept type expected from the target system in the header. Default value: application/json |
jsonResourcesTag | No |
This entry holds the json tag value that is used during reconciliation for parsing multiple entries in a single payload. Default value: "__ACCOUNT__=items","__GROUP__=items","__ORGANIZATION__=items","__DYNAMICGROUP__=items","__DATAPARTITIONID__=items" |
specialAttributeTargetFormat | No |
This entry lists the format in which an attribute is present in the target system endpoint. For example, the alias attribute will be present as aliases.alias in the target system endpoint. Values are comma separated and are presented in the following format: OBJ_CLASS.ATTR_NAME= TARGET_FORMAT. Default value: "__ACCOUNT__=items","__GROUP__=items","__ORGANIZATION__=items","__DYNAMICGROUP__=items" |
specialAttributeHandling | No |
This entry lists the format in which an attribute is present in the target system endpoint. Values are comma separated and are presented in the following format: OBJ_CLASS.ATTR_NAME= TARGET_FORMAT. Default value: "__ACCOUNT__.__GROUP__.ADDATTRIBUTE=SINGLE","__ACCOUNT__.__GROUP__.REMOVEATTRIBUTE=SINGLE","__ACCOUNT__.__ORGANIZATION__.ADDATTRIBUTE=SINGLE","__ACCOUNT__.__ORGANIZATION__.REMOVEATTRIBUTE=SINGLE","__ACCOUNT__.sourceIdentifiers.ADDATTRIBUTE=SINGLE","__ACCOUNT__.sourceIdentifiers.REMOVEATTRIBUTE=SINGLE","__ACCOUNT__.aliases.ADDATTRIBUTE=SINGLE","__ACCOUNT__.aliases.REMOVEATTRIBUTE=SINGLE","__ACCOUNT__.emailAddresses.ADDATTRIBUTE=SINGLE","__ACCOUNT__.emailAddresses.REMOVEATTRIBUTE=SINGLE","__ACCOUNT__.phoneNumbers.ADDATTRIBUTE=SINGLE","__ACCOUNT__.phoneNumbers.REMOVEATTRIBUTE=SINGLE","__ACCOUNT__.languages.ADDATTRIBUTE=SINGLE","__ACCOUNT__.languages.REMOVEATTRIBUTE=SINGLE" |
pageSize | No |
The number of users that appears on a page for a search operation. Default value:100 |