blob: 35c416bd1675c648531594f943dd523af41fb75a [file] [log] [blame]
Jon Perrittee6074f2014-04-30 18:42:32 -05001package volumes
2
3type Volume map[string]interface{}
4
5type CreateOpts struct {
6 Availability_zone string `json:"size"`
7 Source_volid string `json:"source_volid"`
8 Display_description string `json:"display_description"`
9 Snapshot_id string `json:"snapshot_id"`
10 Size int `json:"size"`
11 Display_name string `json:"display_name"`
12 ImageRef string `json:"imageRef"`
13 Volume_type string `json:"volume_type"`
14 Bootable bool `json:"bootable"`
15 Metadata map[string]string `json:"metadata"`
16}