informatica
v1.0.4
Published
This library wraps the Informatica REST API's that are exposed to te user.
Downloads
13
Maintainers
Readme
A NodeJS client to connect to the Informatica REST API's
Currently only supports Enterprise Data Catalog (EDC).
For support please contact sales at Potentiate
Install
$ npm install informatica
Usage
import {EDCClient, EDCClientConfiguration} from 'informatica';
// or:
var edc_client = require("informatica").EDCClient;
To create a data domain group
var edc_client_config = {
hostname: 'myhostname.com', //Replace with the provided hostname. Do not add protocol (http or https)
port: 8085, //Default is 8085
username: 'my_username', //Replace with the provided username
password: 'my_password' //Replace with the provided password
};
edc_client.createDataDomainGroup(edc_client_config, name, description).then(function () {
//Do something here
}, function (error) {
console.error('Error creating data domain group [' + object.Key + ']. Error [' + error + '].');
});