vCAC/vCO Variables Exposure
vCAC/vCO Variables Exposure h1,h2,h3,h4,h5,h6,.site-title{ font-family: ‘Open Sans’, sans-serif; }
System.log(“Workflow started on vCAC host ” + vCACHost.displayName);
System.log(“Got vCAC virtual machine ” + vCACVm.virtualMachineName);
System.log(“Matching virtual machine entity ” + virtualMachineEntity.keyString);
if (vCACVmProperties != null) {
var log = “”;
log += “vCAC VM properties :\n”;
var array = new Array();
for each (var key in vCACVmProperties.keys) {
array.push(“\t\”” + key + “\”: \”” + vCACVmProperties.get(key) + “\””);
}
array.sort();
for each (var line in array) {
log += “\t” + line + “\n”;
}
System.log(log);
}