// Get retrieves the details for a particular flavor. func Get(client *gophercloud.ServiceClient, flavorID string) os.GetResult { return os.Get(client, flavorID) }
func (c context) getFlavor() { flavor, err := flavors.Get(c.client, "1").Extract() c.Logf("Getting flavor %s", flavor.ID) c.AssertNoErr(err) }