<< Click to Display Table of Contents >> Navigation: Development > Project Artifacts > CONNECTOR |
The CONNECTOR collection holds references to all connectors defined for current design projects (PROJECT_WIP).
{
"_id" : "",
"name" : "",
"type" : "",
"projectId" : "",
"createdAt" : 1970-01-01 00:00:00.000Z,
"parametersContainer" : {
"development" : {},
"testing" : {},
"production" : {}
}
}
Attribute |
Value |
Note |
_id |
A unique identifier for the connector. |
|
name |
The full native name of the resource |
|
type |
The type of connector. Must match an entry from CONNECTOR_TYPE. e.g: "Oracle:PDB" |
|
projectId |
Reference to the design project (PROJECT_WIP entry) this connector belongs to. |
|
createdAt |
The time when the connector was created |
|
parametersContainer |
Sets of connection parameters for the connector (credentials, target schemas, etc.) e.g.: { "username" : "dtstest", "password" : "test", "connectionString" : "jdbc:oracle:thin:@172.16.10.212:1521/DTSTESTPDB", "schemas" : "dtstest,dtsdemo" } |
Has 3 separate sections for the types of deployment. |
Objects of the CONNETOR form will also be used to describe connectors in published projects (PROJECT). When employed in this way, they will also include the following attributes:
Attribute |
Value |
Note |
collections |
The list of all collection resources from this connector that are included in the published project, in the published form of COLLECTION_DETAILS. |
The data for these items is extracted by joining design artifacts from PROJECT_RESOURCE with artifacts from COLLECTION_DETAILS. |
remotes |
The list of all remote call resources from this connector that are included in the published project, in the form of REMOTE_CALL_DETAILS. |
The data for these items is extracted by joining design artifacts from PROJECT_RESOURCE with artifacts from REMOTE_CALL_DETAILS. |