mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-01 03:02:17 +00:00
13 lines
516 B
JavaScript
13 lines
516 B
JavaScript
/* JavaScript: getConfigValue action
|
|
Retrieves the configuration element attribute value for a given key.
|
|
Inputs: path (string), configurationName (string), variableName (string)
|
|
Return type: string
|
|
*/
|
|
|
|
var configElement = null;
|
|
for each (configElement in Server.getConfigurationElementCategoryWithPath(path).configurationElements) {
|
|
if (configElement.name.indexOf(configurationName) === 0) { break; };
|
|
}
|
|
var attribValue = configElement.getAttributeWithKey(variableName).value;
|
|
|
|
return attribValue;
|