Get resources provisioned by a vRA request in vRO

• Craig

Sometimes you might need to programatically get information about resources provisioned by an IaaS request in vRA.

This can easily be achieved by using the getResourcesProvisionedByRequest() method of vCACCAFECatalogConsumerRequestService.

It will return a vCACCAFEPagedResource object on which you call getContent() to get at the underlying information. In this case it is an array of vCACCAFECatalogResource.

Here is a quick example of how to use it..