blob: 6a76f857f4960d13c55b453e6a28e39e38a71e23 [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 Perritt982c86d2014-05-05 21:13:54 -050015type DeleteOpts map[string]string