node-vsphere icon indicating copy to clipboard operation
node-vsphere copied to clipboard

This is a Node.js module to connect to VMware vCenter servers and/or ESXi hosts and perform operations.

Results 7 node-vsphere issues
Sort by recently updated
recently updated
newest added

The error event is not working, considering the following code: ``` var Vsphere = require('vsphere'); var vc = new Vsphere.Client('myhost', 'myuser', 'mypass', false); vc.once('ready', function() { console.log('vSphere ready'); }); vc.once('error',...

Found an interesting one: I was calling vc.runCommand('QueryVmfsDatastoreCreateOptions', queryVmfsDatastoreCreateOptions). The queryVmfsDatastoreCreateOptions.spec.partition.partition object has a property called 'attributes'. This is a required property. If it is included Vsphere returns an error:...

Hello, ``` vShpere version : 5.5 node version : 6.9.5 (LTS) ``` I've been using the example provided in the Readme to execute some vSphere commands. However, instead of using...

I'm new to vsphere. When I use `vc.getMORefsInContainerByTypePropertyArray(rootFolder, 'HostSystem', ['summary'])` API. I got error. I don't why? Can you help me?

An invalid FQDN or IP results in an uncaught DNS error.. I am unable to catch the error too: ``` error: uncaughtException: getaddrinfo ENOTFOUND test_vcenter2 test_vcenter2:443 date=Tue Jun 28 2016...

I have the following app that I want to use to grab a bunch of fields from vSphere and stick into a monog repository (which I am then cross reference...