Skip to content

phoomin2012/node-xenapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

244 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xenapi3

This module is add the missing api of xenapi2

Usage

const xenapi = require("xenapi3-fix")({
	host: "xen-server",
	port: "80"
});

// Example get list of VM
xenapi.session.login("username", "password").then(function () {
	xenapi.vmCollection.list().then(function (vms) {
		console.log(vms);
	});
});

Document

	xenAPI.host;
	xenAPI.consoleCollection;
	xenAPI.guestMetricsCollection;
	xenAPI.metricsCollection;
	xenAPI.networkCollection;
	xenAPI.poolCollection;
	xenAPI.srCollection;
	xenAPI.taskCollection;
	xenAPI.templateCollection;
	xenAPI.vbdCollection;
	xenAPI.vdiCollection;
	xenAPI.vifCollection;
	xenAPI.vlanCollection;
	xenAPI.vmCollection;

More comming soon...

Donate

https://paypal.me/PhuminShop

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.3%
  • CoffeeScript 13.7%