Statistics
| Branch: | Tag: | Revision:

root / db / fixtures / vms.json @ 8d97deff

History | View | Annotate | Download (2.8 kB)

1
[
2
    {
3
        "model": "db.Image",
4
        "pk": 1,
5
        "fields": {
6
            "name": "Debian Squeeze",
7
            "created": "2011-02-06 00:00:00",
8
            "updated": "2011-02-06 00:00:00",
9
            "state": "ACTIVE",
10
            "description": "Full Debian Squeeze Installation",
11
            "size": 5678
12
        }
13
    },
14
    {
15
        "model": "db.VirtualMachine",
16
        "pk": 1001,
17
        "fields": {
18
            "owner": 1,
19
            "name": "snf-1001",
20
            "created": "2011-02-06 00:00:00",
21
            "updated": "2011-02-06 00:00:00",
22
            "charged": "2011-02-06 00:00:00",
23
            "sourceimage": 1,
24
            "hostid": "HAL-9000",
25
            "ipfour": "192.168.2.1",
26
            "ipsix": "::1",
27
            "flavor": 1,
28
            "_operstate": "STOPPED"
29
        }
30
    },
31
    {
32
        "model": "db.VirtualMachine",
33
        "pk": 1002,
34
        "fields": {
35
            "owner": 1,
36
            "name": "snf-1002",
37
            "created": "2011-02-10 00:00:00",
38
            "updated": "2011-02-10 00:00:00",
39
            "charged": "2011-02-10 00:00:00",
40
            "sourceimage": 1,
41
            "hostid": "HAL-9000",
42
            "ipfour": "192.168.2.2",
43
            "ipsix": "::2",
44
            "flavor": 1,
45
            "_operstate": "BUILD"
46
        }
47
    },
48
    {
49
        "model": "db.VirtualMachine",
50
        "pk": 1003,
51
        "fields": {
52
            "owner": 1,
53
            "name": "snf-1003",
54
            "created": "2011-02-10 00:00:00",
55
            "updated": "2011-02-10 00:00:00",
56
            "charged": "2011-02-10 00:00:00",
57
            "sourceimage": 1,
58
            "hostid": "HAL-9000",
59
            "ipfour": "192.168.2.3",
60
            "ipsix": "::3",
61
            "flavor": 1,
62
            "_operstate": "STARTED"
63
        }
64
    },
65
    {
66
        "model": "db.VirtualMachine",
67
        "pk": 1004,
68
        "owner": 1,
69
        "fields": {
70
            "owner": 1,
71
            "name": "snf-1004",
72
            "created": "2011-02-10 00:00:00",
73
            "updated": "2011-02-10 00:00:00",
74
            "charged": "2011-02-10 00:00:00",
75
            "sourceimage": 1,
76
            "hostid": "HAL-9000",
77
            "ipfour": "192.168.2.4",
78
            "ipsix": "::4",
79
            "flavor": 1,
80
            "_operstate": "STARTED"
81
        }
82
    },
83
    {
84
        "model": "db.VirtualMachineMetadata",
85
        "pk": 1,
86
        "fields": {
87
            "meta_key": "OS",
88
            "meta_value": "debian",
89
            "vm": 1001
90
        }
91
    },
92
    {
93
        "model": "db.Image",
94
        "pk": 2,
95
        "fields": {
96
            "name": "Slackware 13.1",
97
            "created": "2011-02-10 00:00:00",
98
            "updated": "2011-02-10 00:00:00",
99
            "state": "ACTIVE",
100
            "description": "Full Slackware 13.1 Installation",
101
            "size": 1234,
102
            "owner": 1,
103
            "sourcevm": 1001
104
        }
105
    }
106
]