This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (busGroup === null) { | |
busGroup = "Humblelab" | |
} | |
osCatalogName = "Ubuntu Server 16.04" | |
var BusinessGroups = vCACCAFEEntitiesFinder.findBusinessGroups(cafeHost , busGroup) | |
System.log(BusinessGroups) | |
var BusGroupID = BusinessGroups[0].id; | |
System.log(BusGroupID) | |
var CatalogItems = vCACCAFEEntitiesFinder.findCatalogItems(cafeHost, osCatalogName); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Remember to assign parameters/attributes to correctly return required values. At minimum these are" | |
busGroup - requesting business group | |
cafeHost - vRA Cafe Host | |
osCatalogName - Name of blueprint being requested | |
*/ | |
// Determine catalog item from business group | |
var BusinessGroups = vCACCAFEEntitiesFinder.findBusinessGroups(cafeHost , busGroup) | |
System.log(BusinessGroups) |
NewerOlder