UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

22 lines (19 loc) 672 B
'use strict'; const DynamicData = require('./DynamicData'), ToolsConfigInfoToolsLastInstallInfo = require('./ToolsConfigInfoToolsLastInstallInfo'); module.exports = class ToolsConfigInfo extends DynamicData { static mappings() { return { afterPowerOn: 'xsd:boolean', afterResume: 'xsd:boolean', beforeGuestReboot: 'xsd:boolean', beforeGuestShutdown: 'xsd:boolean', beforeGuestStandby: 'xsd:boolean', lastInstallInfo: ToolsConfigInfoToolsLastInstallInfo, pendingCustomization: 'xsd:string', syncTimeWithHost: 'xsd:boolean', toolsUpgradePolicy: 'UpgradePolicy', toolsVersion: 'xsd:int' }; } };