Examples of WrappedFlavor


Examples of io.fathom.cloud.compute.api.os.model.WrappedFlavor

    @Path("{id}")
    public WrappedFlavor showFlavor(@PathParam("id") long id) throws CloudException {
        FlavorData flavor = flavors.find(id);
        notFoundIfNull(flavor);

        WrappedFlavor response = new WrappedFlavor();
        response.flavor = toModel(flavor, true);

        return response;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.