Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YagmurOzden/32ad4985ad280fd0a3f7992799836a42 to your computer and use it in GitHub Desktop.
Save YagmurOzden/32ad4985ad280fd0a3f7992799836a42 to your computer and use it in GitHub Desktop.
Get configuration element whose type is properties (VMware vRO action, Configuration Element)
// VMware vRealize Orchestrator action sample
// vRA 8.4
//action input type: configurationElementName (string), attributeElement(string)
//action return type: Properties
var configurationElementPath = "web-root";
// var configurationElementName = "Catalog Item Credentials";
// var attributeElement="deployment"
try{
var category = Server.getConfigurationElementCategoryWithPath(configurationElementPath);
}
catch(e){
System.log(e);
}
for each ( var element in category.configurationElements) {
if (element.name == configurationElementName) {
var configurationElement = element;
}
}
var deployment =new Properties();
var deployment=configurationElement.getAttributeWithKey(attributeElement).value;
return deployment;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment