ncloud-loadbalancer

1.4.1 • Public • Published

ncloud-loadbalancer

Installation

For Node.js

npm

npm install ncloud-loadbalancer --save

For 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, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var Loadbalancer = require('ncloud-loadbalancer');

var client = new Loadbalancer.ApiClient({
  accessKey: 'your access key',
  secretKey: 'your secret key',
});

var apiInstance = new Loadbalancer.V2Api(client)

var addLoadBalancerSslCertificateRequest = new Loadbalancer.AddLoadBalancerSslCertificateRequest(); // {AddLoadBalancerSslCertificateRequest} addLoadBalancerSslCertificateRequest


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.addLoadBalancerSslCertificate(addLoadBalancerSslCertificateRequest, callback);

Documentation for API Endpoints

All URIs are relative to https://ncloud.apigw.ntruss.com/loadbalancer/v2

Class Method HTTP request Description
Loadbalancer.V2Api addLoadBalancerSslCertificate POST /addLoadBalancerSslCertificate
Loadbalancer.V2Api changeLoadBalancedServerInstances POST /changeLoadBalancedServerInstances
Loadbalancer.V2Api changeLoadBalancerInstanceConfiguration POST /changeLoadBalancerInstanceConfiguration
Loadbalancer.V2Api createLoadBalancerInstance POST /createLoadBalancerInstance
Loadbalancer.V2Api deleteLoadBalancerInstances POST /deleteLoadBalancerInstances
Loadbalancer.V2Api deleteLoadBalancerSslCertificate POST /deleteLoadBalancerSslCertificate
Loadbalancer.V2Api getLoadBalancedServerInstanceList POST /getLoadBalancedServerInstanceList
Loadbalancer.V2Api getLoadBalancerInstanceList POST /getLoadBalancerInstanceList
Loadbalancer.V2Api getLoadBalancerSslCertificateList POST /getLoadBalancerSslCertificateList
Loadbalancer.V2Api getLoadBalancerTargetServerInstanceList POST /getLoadBalancerTargetServerInstanceList

Documentation for Models

License

Copyright 2018 NAVER BUSINESS PLATFORM Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i ncloud-loadbalancer

Weekly Downloads

3

Version

1.4.1

License

MIT

Unpacked Size

211 kB

Total Files

73

Last publish

Collaborators

  • bebop14
  • nbp