UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

15 lines (11 loc) 314 B
'use strict'; const SelectionSpec = require('./SelectionSpec'); module.exports = class TraversalSpec extends SelectionSpec { constructor(type, path, name, skip = false, selectSet = []) { super(name); this.type = type; this.path = path; this.skip = skip; this.selectSet = selectSet; } };