mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-22 01:42:19 +00:00
10 lines
No EOL
491 B
JavaScript
10 lines
No EOL
491 B
JavaScript
/* JavaScript: unpack payload
|
|
Extracts needed variables from the vRA inputProperties
|
|
Inputs: inputProperties (Properties)
|
|
Outputs: originalNames (Array/string), domain (string), nameBase (string), endpointId (string), digits (number)
|
|
*/
|
|
nameBase = inputProperties.customProperties.nameBase;
|
|
originalNames = inputProperties.resourceNames;
|
|
domain = inputProperties.customProperties.domain;
|
|
endpointId = inputProperties.endpointId;
|
|
digits = inputProperties.customProperties.digits; |