Versions in this module Expand all Collapse all v0 v0.2.0 May 30, 2014 Changes in this version + var ErrNotImplemented = fmt.Errorf("Flavors functionality not implemented.") + type Client struct + func NewClient(e string, a identity.AuthResults, ao identity.AuthOptions) *Client + type Flavor struct + Disk int + Id string + Name string + Ram int + RxTxFactor float64 + Swap int + VCpus int + func GetFlavor(gr GetResults) (*Flavor, error) + func GetFlavors(lr ListResults) ([]Flavor, error) + type GetResults map[string]interface + func Get(c *Client, id string) (GetResults, error) + type ListFilterOptions struct + ChangesSince string + Limit int + Marker string + MinDisk int + MinRam int + type ListResults map[string]interface + func List(c *Client, lfo ListFilterOptions) (ListResults, error)