Jon Perritt | ee6074f | 2014-04-30 18:42:32 -0500 | [diff] [blame^] | 1 | package volumes |
| 2 | |
| 3 | type Volume map[string]interface{} |
| 4 | |
| 5 | type 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 | } |