
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
ncloud-autoscaling
Advanced tools
npm install ncloud-autoscaling --save
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.
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
}
}
]
}
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);
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 |
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
autoscaling client library for Naver Cloud Platform
We found that ncloud-autoscaling demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.