New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ncloud-autoscaling

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ncloud-autoscaling

autoscaling client library for Naver Cloud Platform

latest
npmnpm
Version
1.4.1
Version published
Maintainers
2
Created
Source

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

ClassMethodHTTP requestDescription
Autoscaling.V2ApicreateAutoScalingGroupPOST /createAutoScalingGroup
Autoscaling.V2ApicreateLaunchConfigurationPOST /createLaunchConfiguration
Autoscaling.V2ApideleteAutoScalingGroupPOST /deleteAutoScalingGroup
Autoscaling.V2ApideleteAutoScalingLaunchConfigurationPOST /deleteAutoScalingLaunchConfiguration
Autoscaling.V2ApideletePolicyPOST /deletePolicy
Autoscaling.V2ApideleteScheduledActionPOST /deleteScheduledAction
Autoscaling.V2ApiexecutePolicyPOST /executePolicy
Autoscaling.V2ApigetAdjustmentTypeListPOST /getAdjustmentTypeList
Autoscaling.V2ApigetAutoScalingActivityLogListPOST /getAutoScalingActivityLogList
Autoscaling.V2ApigetAutoScalingConfigurationLogListPOST /getAutoScalingConfigurationLogList
Autoscaling.V2ApigetAutoScalingGroupListPOST /getAutoScalingGroupList
Autoscaling.V2ApigetAutoScalingPolicyListPOST /getAutoScalingPolicyList
Autoscaling.V2ApigetLaunchConfigurationListPOST /getLaunchConfigurationList
Autoscaling.V2ApigetScalingProcessTypeListPOST /getScalingProcessTypeList
Autoscaling.V2ApigetScheduledActionListPOST /getScheduledActionList
Autoscaling.V2ApiputScalingPolicyPOST /putScalingPolicy
Autoscaling.V2ApiputScheduledUpdateGroupActionPOST /putScheduledUpdateGroupAction
Autoscaling.V2ApiresumeProcessesPOST /resumeProcesses
Autoscaling.V2ApisetDesiredCapacityPOST /setDesiredCapacity
Autoscaling.V2ApisetServerInstanceHealthPOST /setServerInstanceHealth
Autoscaling.V2ApisuspendProcessesPOST /suspendProcesses
Autoscaling.V2ApiterminateServerInstanceInAutoScalingGroupPOST /terminateServerInstanceInAutoScalingGroup
Autoscaling.V2ApiupdateAutoScalingGroupPOST /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.

FAQs

Package last updated on 22 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts