Socket
Book a DemoInstallSign in
Socket

opennebula

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

opennebula

OpenNebula XML-RPC API client.

latest
Source
npmnpm
Version
1.0.12
Version published
Maintainers
1
Created
Source

addon-nodejs

OpenNebula XMLRPC Nodejs client.

Installation

npm install opennebula

Usage

  • Input options are directly passed to OpenNebula. Check OpenNebula XMLRPC API documentation for more details.
  • Return values are unchanged from OpenNebula, official documentation will also apply to them.
  • Check the tests and examples folder for more examples.

Getting started

To use opennebula first you need to instantiate it:

var OpenNebula = require('opennebula');
var one = new OpenNebula('user:hash', 'http://myone.one:2633/RPC2');

one.version(function(err, data) {
  console.log(data);
});
//...

Manipulating a VM:

// create a vm entity. does not query API
var vm = one.getVM(122);

// query API for vm info
vm.info(function (err, data) {
  console.log(data);
});

vm.action('reboot', function(err, data) {
  console.log(data);
});

//...
var template = one.getTemplate(4);

template.instantiate('test_one', undefined, undefined, function(err, vm) {
  vm.action('delete', function(err, data) {
    console.log(data);
  });
});

//...
one.createVM('GRAPHICS=[TYPE="vnc",LISTEN="0.0.0.0"]\nMEMORY="1024"\n FROM_APP="53e767ba8fb81d6a69000001"\nVCPU="1"\nFROM_APP_NAME="CentOS 6.5 - KVM"\nOS=[ARCH="x86_64"]\n NIC=[NETWORK="private"]\nLOGO="images/logos/centos.png"\nCPU="0.5"\n DISK=[IMAGE="CentOS-6.5-one-4.8",IMAGE_UNAME="oneadmin"]\n', false, function(err, vm) {

  vm.action('delete', function(err, data) {
    console.log(data);
  });
});

//...

Spec

OpenNebula

  • one.version(callback)
  • one.config(callback)
  • one.getVM(id)
  • one.createVM(template, state, callback)
  • one.getVMs(callback, userFilter, startID, endID, stateFilter)
  • one.getHost(id)
  • one.createHost(hostname, immad, vmmad, vnmad, cluster, callback)
  • one.getHosts(callback)
  • one.createTemplate(template, callback)
  • one.getTemplate(id)
  • one.getTemplates(callback, userFilter, startID, endID)
  • one.createCluster(name, callback)
  • one.getCluster(id)
  • one.getClusters(callback)
  • one.createGroup(name, callback)
  • one.getGroup(id)
  • one.getGroups(callback)
  • one.createVNet(template, cluster, callback)
  • one.getVNet(id)
  • one.getVNets(callback, userFilter, startID, endID)
  • one.createUser(username, password, driver, callback)
  • one.login(username, token, period, callback)
  • one.getUser(id)
  • one.getUsers(callback)
  • one.createDatastore(template, cluster, callback)
  • one.getDatastore(id)
  • one.getDatastores(callback)
  • one.createImage(template, datastore, callback)
  • one.getImage(id)
  • one.getImages(callback, userFilter, startID, endID)
  • one.createZone(template, callback)
  • one.getZone(id)
  • one.getZones(callback)
  • one.createDocument(template, type, callback)
  • one.getDocument(id)
  • one.getDocuments(callback, userFilter, startID, endID)

VM

  • vm.info(callback)
  • vm.monitoring(callback)
  • vm.action(action, callback)
  • vm.deploy(host, datastore, enforce, callback)
  • vm.diskSnapshot(disk, name, type, imed, clone, callback)
  • vm.attachDisk(disk, callback)
  • vm.detachDisk(disk, callback)
  • vm.attachNIC(template, callback)
  • vm.detachNIC(nicid, callback)
  • vm.chown(owner, callback)
  • vm.chgrp(group, callback)
  • vm.chmod(user_use, user_manage, user_admin, group_use, group_manage, group_admin, other_use, other_manage, other_admin, callback)
  • vm.rename(name, callback)
  • vm.createSnapshot(name, callback)
  • vm.deleteSnapshot(name, callback)
  • vm.snapshotrevert(snapshot, callback)
  • vm.resize(template, enforce, callback)
  • vm.update(template, replace, callback)
  • vm.recover(recover, callback)
  • vm.migrate(host, live, enforce, datastore, callback)
  • vm.saveAsDisk(disk, imagename, imagetype, snapshot, callback)
  • vm.createDiskSnapshot(disk, snapshot, callback)
  • vm.updateConf(template, callback)
  • vm.revertDiskSnapshot(disk, snapshot, callback)
  • vm.deleteDiskSnapshot(disk, snapshot, callback)
  • vm.lock(level, callback)
  • vm.unlock(callback)

Datastore

  • datastore.info(callback)
  • datastore.update(content, whole, callback)
  • datastore.delete(callback)
  • datastore.chown(owner, callback)
  • datastore.chgrp(group, callback)
  • datastore.chmod(user_use, user_manage, user_admin, group_use, group_manage, group_admin, other_use, other_manage, other_admin, callback)
  • datastore.rename(name, callback)

Template

  • template.info(callback)
  • template.update(content, whole, callback)
  • template.instantiate(name, state, template, callback)
  • template.clone(name, callback)
  • template.delete(callback)
  • template.chown(owner, callback)
  • template.chgrp(group, callback)
  • template.chmod(user_use, user_manage, user_admin, group_use, group_manage, group_admin, other_use, other_manage, other_admin, callback)
  • template.rename(name, callback)

Cluster

  • cluster.info(callback)
  • cluster.update(content, whole, callback)
  • cluster.delete(callback)
  • cluster.rename(name, callback)
  • cluster.addHost(host, callback)
  • cluster.delHost(host, callback)
  • cluster.addDatastore(datastore, callback)
  • cluster.delDatastore(datastore, callback)
  • cluster.addVnet(vnet, callback)
  • cluster.delVnet(vnet, callback)

Document

  • document.info(callback)
  • document.update(content, whole, callback)
  • document.clone(name, callback)
  • document.delete(callback)
  • document.chown(owner, callback)
  • document.chgrp(group, callback)
  • document.chmod(user_use, user_manage, user_admin, group_use, group_manage, group_admin, other_use, other_manage, other_admin, callback)
  • document.rename(name, callback)

Group

  • group.info(callback)
  • group.update(content, whole, callback)
  • group.delete(callback)
  • group.quota(template, callback)
  • group.addProvider(group, zone, cluster, callback)
  • group.delProvider(group, zone, cluster, callback)

Host

  • host.info(callback)
  • host.enable(callback)
  • host.disable(callback)
  • host.update(template, merge, callback)
  • host.delete(callback)
  • host.rename(name, callback)
  • monitoring(callback)
  • allocate(hostname, manager, vm, cluster, callback)
  • setStatus(status, callback)

Image

  • image.info(callback)
  • image.update(content, whole, callback)
  • image.clone(name, callback)
  • image.delete(callback)
  • image.chown(owner, callback)
  • image.chgrp(group, callback)
  • image.chmod(user_use, user_manage, user_admin, group_use, group_manage, group_admin, other_use, other_manage, other_admin, callback)
  • image.rename(name, callback)
  • image.persistent(persistent, callback)
  • image.chtype(type, callback)
  • image.enable(callback)
  • image.disable(callback)
  • image.lock(level, callback)
  • image.unlock(callback)

User

  • user.info(callback)
  • user.update(content, whole, callback)
  • user.delete(callback)
  • user.chgrp(group, callback)
  • user.passwd(password, callback)
  • user.chauth(driver, password, callback)
  • user.quota(template, callback)
  • user.addgroup(group, callback)
  • user.delgroup(group, callback)

VNet

  • vnet.info(callback)
  • vnet.update(content, whole, callback)
  • vnet.addRange(content, callback)
  • vnet.delRange(range, callback)
  • vnet.freeRange(range, callback)
  • vnet.reserve(template, callback)
  • vnet.updateRange(template, callback)
  • vnet.hold(template, callback)
  • vnet.release(template, callback)
  • vnet.delete(callback)
  • vnet.chown(owner, callback)
  • vnet.chgrp(group, callback)
  • vnet.chmod(user_use, user_manage, user_admin, group_use, group_manage, group_admin, other_use, other_manage, other_admin, callback)
  • vnet.rename(name, callback)

Zone

  • zone.info(callback)
  • zone.update(content, whole, callback)
  • zone.delete(callback)
  • zone.rename(name, callback)

Tests

Tests are implemented using mocha and chai. Run them with npm test.

Examples

Check the examples folder for more specific use cases examples.

License

Pedro Dias - @pedromdias

Licensed under the Apache license, version 2.0 (the "license"); You may not use this file except in compliance with the license. You may obtain a copy of the license at:

http://www.apache.org/licenses/LICENSE-2.0.html

Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "as is" basis, without warranties or conditions of any kind, either express or implied. See the license for the specific language governing permissions and limitations under the license.

FAQs

Package last updated on 04 Dec 2018

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