UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

14 lines (10 loc) 280 B
'use strict'; const ManagedEntity = require('./ManagedEntity'); module.exports = class SessionManager extends ManagedEntity { login(userName, password) { return this.call('LoginAsync', { userName, password }); } logout() { return this.call('LogoutAsync'); } };