ncloud-autoscaling

1.4.1 • Public • Published

ncloud-autoscaling

Installation

For Node.js

npm

npm install ncloud-autoscaling --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 Autoscaling = require('ncloud-autoscaling');

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

var apiInstance = new Autoscaling.V2Api(client)

var createAutoScalingGroupRequest = new Autoscaling.CreateAutoScalingGroupRequest(); // {CreateAutoScalingGroupRequest} createAutoScalingGroupRequest


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

Documentation for API Endpoints

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

Class Method HTTP request Description
Autoscaling.V2Api createAutoScalingGroup POST /createAutoScalingGroup
Autoscaling.V2Api createLaunchConfiguration POST /createLaunchConfiguration
Autoscaling.V2Api deleteAutoScalingGroup POST /deleteAutoScalingGroup
Autoscaling.V2Api deleteAutoScalingLaunchConfiguration POST /deleteAutoScalingLaunchConfiguration
Autoscaling.V2Api deletePolicy POST /deletePolicy
Autoscaling.V2Api deleteScheduledAction POST /deleteScheduledAction
Autoscaling.V2Api executePolicy POST /executePolicy
Autoscaling.V2Api getAdjustmentTypeList POST /getAdjustmentTypeList
Autoscaling.V2Api getAutoScalingActivityLogList POST /getAutoScalingActivityLogList
Autoscaling.V2Api getAutoScalingConfigurationLogList POST /getAutoScalingConfigurationLogList
Autoscaling.V2Api getAutoScalingGroupList POST /getAutoScalingGroupList
Autoscaling.V2Api getAutoScalingPolicyList POST /getAutoScalingPolicyList
Autoscaling.V2Api getLaunchConfigurationList POST /getLaunchConfigurationList
Autoscaling.V2Api getScalingProcessTypeList POST /getScalingProcessTypeList
Autoscaling.V2Api getScheduledActionList POST /getScheduledActionList
Autoscaling.V2Api putScalingPolicy POST /putScalingPolicy
Autoscaling.V2Api putScheduledUpdateGroupAction POST /putScheduledUpdateGroupAction
Autoscaling.V2Api resumeProcesses POST /resumeProcesses
Autoscaling.V2Api setDesiredCapacity POST /setDesiredCapacity
Autoscaling.V2Api setServerInstanceHealth POST /setServerInstanceHealth
Autoscaling.V2Api suspendProcesses POST /suspendProcesses
Autoscaling.V2Api terminateServerInstanceInAutoScalingGroup POST /terminateServerInstanceInAutoScalingGroup
Autoscaling.V2Api updateAutoScalingGroup POST /updateAutoScalingGroup

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-autoscaling

Weekly Downloads

7

Version

1.4.1

License

MIT

Unpacked Size

360 kB

Total Files

131

Last publish

Collaborators

  • bebop14
  • nbp