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

ncloud-clouddb

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

clouddb client library for Naver Cloud Platform

latest
npmnpm
Version
1.4.1
Version published
Maintainers
2
Created
Source

ncloud-clouddb

Installation

For Node.js

npm

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

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

var apiInstance = new Clouddb.V2Api(client)

var createCloudDBInstanceRequest = new Clouddb.CreateCloudDBInstanceRequest(); // {CreateCloudDBInstanceRequest} createCloudDBInstanceRequest


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

Documentation for API Endpoints

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

ClassMethodHTTP requestDescription
Clouddb.V2ApicreateCloudDBInstancePOST /createCloudDBInstance
Clouddb.V2ApideleteCloudDBServerInstancePOST /deleteCloudDBServerInstance
Clouddb.V2ApidownloadDmsFilePOST /downloadDmsFile
Clouddb.V2ApiflushCloudDBInstancePOST /flushCloudDBInstance
Clouddb.V2ApigetBackupListPOST /getBackupList
Clouddb.V2ApigetCloudDBConfigGroupListPOST /getCloudDBConfigGroupList
Clouddb.V2ApigetCloudDBImageProductListPOST /getCloudDBImageProductList
Clouddb.V2ApigetCloudDBInstanceListPOST /getCloudDBInstanceList
Clouddb.V2ApigetCloudDBProductListPOST /getCloudDBProductList
Clouddb.V2ApigetDmsOperationPOST /getDmsOperation
Clouddb.V2ApigetObjectStorageBackupListPOST /getObjectStorageBackupList
Clouddb.V2ApirebootCloudDBServerInstancePOST /rebootCloudDBServerInstance
Clouddb.V2ApirestoreDmsDatabasePOST /restoreDmsDatabase
Clouddb.V2ApirestoreDmsTransactionLogPOST /restoreDmsTransactionLog
Clouddb.V2ApisetObjectStorageInfoPOST /setObjectStorageInfo
Clouddb.V2ApiuploadDmsFilePOST /uploadDmsFile

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