mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-22 01:42:19 +00:00
10 lines
464 B
JavaScript
10 lines
464 B
JavaScript
|
/* JavaScript: apply hostnames
|
||
|
Iterates through the resourceNames array and replaces the original name with the new one.
|
||
|
Inputs: newNames (Array/string), inputProperties (Properties)
|
||
|
Outputs: resourceNames (Array/string)
|
||
|
*/
|
||
|
resourceNames = inputProperties.get("resourceNames");
|
||
|
for (var i=0; i<newNames.length; i++) {
|
||
|
System.log("Replacing resourceName [" + resourceNames[i] + "] with [" + newNames[i] + "]");
|
||
|
resourceNames[i] = newNames[i];
|
||
|
}
|