blob: 77f19af234c8b2ac602de19f92c8757ef0fddca4 [file] [log] [blame]
Jon Perrittee6074f2014-04-30 18:42:32 -05001package volumes
2
Jon Perritte77b9b22014-05-01 13:11:12 -05003type Volume struct {
4 Status string
5 Display_name string
6 Attachments []string
7 Availability_zone string
8 Bootable bool
9 Created_at string
10 Display_description string
11 Volume_type string
12 Snapshot_id string
13 Source_volid string
14 Metadata map[string]string
15 Id string
16 Size int
Jon Perrittee6074f2014-04-30 18:42:32 -050017}
Jon Perritte77b9b22014-05-01 13:11:12 -050018type CreateOpts map[string]interface{}
19type DeleteOpts map[string]string