Re: Flavor filter helper

2016-06-15 Thread Ryan Shoemaker
Thanks, not a problem. Here's what I came up with: ComputeServiceContext computeServiceContext = ...; NovaApi api = computeServiceContext.unwrapApi(NovaApi.class); FlavorApi flavorApi = api.getFlavorApiForZone(...); ImageApi imageApi = api.getImageApi(...); Image i = imageApi.get(...);

Re: Flavor filter helper

2016-06-15 Thread Ignasi Barrera
Hi Ryan, Apologies for the late reply. Unfortunately there is no such helper. The current jclouds portable model does not have those minimum requirements represented in the Image entity (which would be a nice to have, btw) so there is no portable filter yet. I. El 7 jun. 2016 9:33 p. m., "Ryan

Flavor filter helper

2016-06-07 Thread Ryan Shoemaker
Hi, Is there a built-in helper method that returns only those flavors meeting the minimum requirements specified by a given image? Thanks, --Ryan