UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

14 lines (10 loc) 259 B
'use strict'; const DynamicData = require('./DynamicData'); module.exports = class PropertySpec extends DynamicData { constructor(type, all = true, pathSet = []) { super(); this.type = type; this.all = all; this.pathSet = pathSet; } };