Statistics
| Branch: | Tag: | Revision:

root / api / fixtures / api_redux_test_data.json @ 92c53da1

History | View | Annotate | Download (1.5 kB)

1
[
2
    {
3
        "model": "db.Image",
4
        "pk": 1,
5
        "fields": {
6
            "name": "Debian Unstable",
7
            "created": "2011-02-06 00:00:00",
8
            "updated": "2011-02-06 00:00:00",
9
            "state": "ACTIVE",
10
            "description": "Debian Sid, full installation",
11
            "size": 4096
12
        }
13
    },
14
    {
15
        "model": "db.Image",
16
        "pk": 2,
17
        "fields": {
18
            "name": "Red Hat Enterprise Linux",
19
            "created": "2011-02-06 00:00:00",
20
            "updated": "2011-02-06 00:00:00",
21
            "state": "ACTIVE",
22
            "description": "Red Hat Enterprise Linux, full installation",
23
            "size": 2048
24
        }
25
    },
26
    {
27
        "model": "db.Image",
28
        "pk": 3,
29
        "fields": {
30
            "name": "Ubuntu 10.10",
31
            "created": "2011-02-06 00:00:00",
32
            "updated": "2011-02-06 00:00:00",
33
            "state": "ACTIVE",
34
            "description": "Ubuntu 10.10, full installation",
35
            "size": 8192
36
        }
37
    },
38
    
39
    {
40
        "model": "db.Flavor",
41
        "pk": 1,
42
        "fields": {
43
            "cpu": 1,
44
            "ram": 1024,
45
            "disk": 20 
46
        }
47
    },
48
    {
49
        "model": "db.Flavor",
50
        "pk": 2,
51
        "fields": {
52
            "cpu": 1,
53
            "ram": 1024,
54
            "disk": 40 
55
        }
56
    },
57
    {
58
        "model": "db.Flavor",
59
        "pk": 3,
60
        "fields": {
61
            "cpu": 1,
62
            "ram": 1024,
63
            "disk": 80 
64
        }
65
    }
66
]