UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

10 lines (7 loc) 279 B
'use strict'; const ManagedEntity = require('./ManagedEntity'); module.exports = class ViewManager extends ManagedEntity { createContainerView(container, type = [], recursive = false) { return this.call('CreateContainerViewAsync', { container, type, recursive }); } };