blob: 836ba824c85a646eedcf37f252b7f343d3a92a68 [file] [log] [blame]
Jon Perritt687c7d02014-05-05 18:44:54 -05001package snapshots
2
3type Snapshot struct {
4 Status string
5 Display_name string
6 Created_at string
7 Display_description string
8 Volume_id string
9 Metadata map[string]string
10 Id string
11 Size int
12}
13
14type CreateOpts map[string]interface{}
Jon Perritt60c3b2e2014-05-27 18:38:33 -050015type ListOpts struct {
16 Full bool
17}
Jon Perritte3af81d2014-05-06 14:52:28 -050018type GetOpts map[string]string
Jon Perritt982c86d2014-05-05 21:13:54 -050019type DeleteOpts map[string]string