abacus_api v1.0.0
abacus_api
AbacusApi - JavaScript client for abacus_api abacus API generated from abacus.yang This SDK is automatically generated by the Swagger Codegen project:
- API version: 1.0.0
 - Package version: 1.0.0
 - Build date: 2016-09-12T10:34:02.473-04:00
 - Build package: class io.swagger.codegen.languages.JavascriptClientCodegen
 
Installation
For Node.js
npm
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install abacus_api --savegit
If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:
    npm install GIT_USER_ID/GIT_REPO_ID --saveFor browser
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify,
perform the following (assuming main.js is your entry file):
browserify main.js > bundle.jsThen include bundle.js in the HTML pages.
Getting Started
Please follow the installation instruction and execute the following JS code:
var AbacusApi = require('abacus_api');
var api = new AbacusApi.DefaultApi()
var config = new AbacusApi.System(); // {System} configbody object
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.createConfigById(config, callback);Documentation for API Endpoints
All URIs are relative to http://localhost:8080/restconf
| Class | Method | HTTP request | Description | 
|---|---|---|---|
| AbacusApi.DefaultApi | createConfigById | POST /config/config/ | Create config by ID | 
| AbacusApi.DefaultApi | createConfigSystemSystemById | POST /config/config/system/ | Create system by ID | 
| AbacusApi.DefaultApi | deleteConfigById | DELETE /config/config/ | Delete config by ID | 
| AbacusApi.DefaultApi | deleteConfigSystemSystemById | DELETE /config/config/system/ | Delete system by ID | 
| AbacusApi.DefaultApi | retrieveConfig | GET /config/config/ | Retrieve config | 
| AbacusApi.DefaultApi | retrieveConfigSystemSystem | GET /config/config/system/ | Retrieve system | 
| AbacusApi.DefaultApi | updateConfigById | PUT /config/config/ | Update config by ID | 
| AbacusApi.DefaultApi | updateConfigSystemSystemById | PUT /config/config/system/ | Update system by ID | 
Documentation for Models
Documentation for Authorization
All endpoints do not require authorization.
9 years ago