UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

14 lines (10 loc) 264 B
'use strict'; const DynamicData = require('./DynamicData'); module.exports = class ObjectSpec extends DynamicData { constructor(obj, skip = false, selectSet = []) { super(); this.obj = obj; this.skip = skip; this.selectSet = selectSet; } };