tengine_resource 0.5.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/Gemfile +30 -0
  4. data/Gemfile.lock +106 -0
  5. data/README.rdoc +20 -0
  6. data/Rakefile +42 -0
  7. data/VERSION +1 -0
  8. data/bin/tengine_resource_watchd +8 -0
  9. data/config/.gitignore +2 -0
  10. data/config/watchd.yml.erb.example +52 -0
  11. data/lib/tengine/resource.rb +29 -0
  12. data/lib/tengine/resource/config.rb +6 -0
  13. data/lib/tengine/resource/config/resource.rb +194 -0
  14. data/lib/tengine/resource/credential.rb +156 -0
  15. data/lib/tengine/resource/credential/ec2.rb +5 -0
  16. data/lib/tengine/resource/credential/ec2/dummy.rb +148 -0
  17. data/lib/tengine/resource/credential/ec2/launch_options.rb +179 -0
  18. data/lib/tengine/resource/drivers/resource_control_driver.rb +58 -0
  19. data/lib/tengine/resource/net_ssh.rb +134 -0
  20. data/lib/tengine/resource/observer.rb +25 -0
  21. data/lib/tengine/resource/physical_server.rb +7 -0
  22. data/lib/tengine/resource/provider.rb +82 -0
  23. data/lib/tengine/resource/provider/ec2.rb +187 -0
  24. data/lib/tengine/resource/provider/wakame.rb +615 -0
  25. data/lib/tengine/resource/server.rb +62 -0
  26. data/lib/tengine/resource/virtual_server.rb +62 -0
  27. data/lib/tengine/resource/virtual_server_image.rb +34 -0
  28. data/lib/tengine/resource/virtual_server_type.rb +21 -0
  29. data/lib/tengine/resource/watcher.rb +121 -0
  30. data/lib/tengine_resource.rb +4 -0
  31. data/spec/fixtures/goku_at_ec2_ap_northeast.rb +177 -0
  32. data/spec/mongoid.yml +35 -0
  33. data/spec/spec_helper.rb +40 -0
  34. data/spec/support/ec2.rb +129 -0
  35. data/spec/support/mongo_index_key_log.rb +91 -0
  36. data/spec/tengine/resource/bugfix/watcher_for_wakame_spec.rb +232 -0
  37. data/spec/tengine/resource/credential_spec.rb +205 -0
  38. data/spec/tengine/resource/drivers/resource_control_driver_spec.rb +84 -0
  39. data/spec/tengine/resource/net_ssh_spec.rb +148 -0
  40. data/spec/tengine/resource/physical_server_spec.rb +47 -0
  41. data/spec/tengine/resource/provider/ec2_spec.rb +473 -0
  42. data/spec/tengine/resource/provider/test_files/describe_host_nodes.json +22 -0
  43. data/spec/tengine/resource/provider/test_files/describe_images.json +23 -0
  44. data/spec/tengine/resource/provider/test_files/describe_instance_specs.json +23 -0
  45. data/spec/tengine/resource/provider/test_files/describe_instances.json +56 -0
  46. data/spec/tengine/resource/provider/test_files/run_instances.json +30 -0
  47. data/spec/tengine/resource/provider/test_files/terminate_instances.json +3 -0
  48. data/spec/tengine/resource/provider/wakame/00_describe_host_nodes_0_physical_servers.json +8 -0
  49. data/spec/tengine/resource/provider/wakame/01_describe_host_nodes_10_physical_servers.json +139 -0
  50. data/spec/tengine/resource/provider/wakame/02_describe_host_nodes_60_physical_servers.json +795 -0
  51. data/spec/tengine/resource/provider/wakame/10_describe_instances_0_virtual_servers.json +8 -0
  52. data/spec/tengine/resource/provider/wakame/11_describe_instances_10_virtual_servers.json +469 -0
  53. data/spec/tengine/resource/provider/wakame/12_describe_instances_after_run_instances.json +280 -0
  54. data/spec/tengine/resource/provider/wakame/13_describe_instances_after_terminate_instances.json +279 -0
  55. data/spec/tengine/resource/provider/wakame/20_describe_images_0_virtual_server_images.json +8 -0
  56. data/spec/tengine/resource/provider/wakame/21_describe_images_5_virtual_server_images.json +84 -0
  57. data/spec/tengine/resource/provider/wakame/22_describe_images_60_virtual_server_images.json +856 -0
  58. data/spec/tengine/resource/provider/wakame/30_describe_instance_specs_0_virtual_server_specs.json +8 -0
  59. data/spec/tengine/resource/provider/wakame/31_describe_instance_specs_4_virtual_server_specs.json +66 -0
  60. data/spec/tengine/resource/provider/wakame/40_run_instances_0_virtual_servers.json +1 -0
  61. data/spec/tengine/resource/provider/wakame/41_run_instances_1_virtual_servers.json +22 -0
  62. data/spec/tengine/resource/provider/wakame/42_run_instances_5_virtual_servers.json +106 -0
  63. data/spec/tengine/resource/provider/wakame/50_terminate_instances_0_virtual_servers.json +1 -0
  64. data/spec/tengine/resource/provider/wakame/51_terminate_instances_3_virtual_servers.json +5 -0
  65. data/spec/tengine/resource/provider/wakame/sync_physical_servers_spec.rb +114 -0
  66. data/spec/tengine/resource/provider/wakame/sync_virtual_server_images_spec.rb +116 -0
  67. data/spec/tengine/resource/provider/wakame/sync_virtual_server_types_spec.rb +116 -0
  68. data/spec/tengine/resource/provider/wakame/sync_virtual_servers_spec.rb +216 -0
  69. data/spec/tengine/resource/provider/wakame_api_spec.rb +319 -0
  70. data/spec/tengine/resource/provider/wakame_spec.rb +339 -0
  71. data/spec/tengine/resource/provider_spec.rb +252 -0
  72. data/spec/tengine/resource/server_spec.rb +195 -0
  73. data/spec/tengine/resource/test_files/.gitignore +6 -0
  74. data/spec/tengine/resource/test_files/00_describe_host_nodes_0_physical_servers.json +8 -0
  75. data/spec/tengine/resource/test_files/01_describe_host_nodes_10_physical_servers.json +139 -0
  76. data/spec/tengine/resource/test_files/02_describe_host_nodes_60_physical_servers.json +795 -0
  77. data/spec/tengine/resource/test_files/10_describe_instances_0_virtual_servers.json +8 -0
  78. data/spec/tengine/resource/test_files/11_describe_instances_10_virtual_servers.json +469 -0
  79. data/spec/tengine/resource/test_files/12_describe_instances_after_run_instances.json +280 -0
  80. data/spec/tengine/resource/test_files/13_describe_instances_after_terminate_instances.json +279 -0
  81. data/spec/tengine/resource/test_files/14_describe_instances_after_run_1_instance.json +55 -0
  82. data/spec/tengine/resource/test_files/20_describe_images_0_virtual_server_images.json +8 -0
  83. data/spec/tengine/resource/test_files/21_describe_images_5_virtual_server_images.json +84 -0
  84. data/spec/tengine/resource/test_files/22_describe_images_60_virtual_server_images.json +856 -0
  85. data/spec/tengine/resource/test_files/30_describe_instance_specs_0_virtual_server_specs.json +8 -0
  86. data/spec/tengine/resource/test_files/31_describe_instance_specs_4_virtual_server_specs.json +66 -0
  87. data/spec/tengine/resource/test_files/40_run_instances_0_virtual_servers.json +1 -0
  88. data/spec/tengine/resource/test_files/41_run_instances_1_virtual_servers.json +22 -0
  89. data/spec/tengine/resource/test_files/42_run_instances_5_virtual_servers.json +106 -0
  90. data/spec/tengine/resource/test_files/43_run_instances_1_virtual_servers_without_aws_availability_zone.json +22 -0
  91. data/spec/tengine/resource/test_files/50_terminate_instances_0_virtual_servers.json +1 -0
  92. data/spec/tengine/resource/test_files/51_terminate_instances_3_virtual_servers.json +5 -0
  93. data/spec/tengine/resource/virtual_server_image_spec.rb +94 -0
  94. data/spec/tengine/resource/virtual_server_spec.rb +116 -0
  95. data/spec/tengine/resource/virtual_server_type_spec.rb +4 -0
  96. data/spec/tengine/resource/watcher_spec.rb +1026 -0
  97. data/spec/tengine_resource_spec.rb +5 -0
  98. data/tengine_resource.gemspec +171 -0
  99. data/tmp/log/.gitignore +1 -0
  100. metadata +286 -0
@@ -0,0 +1,8 @@
1
+ [
2
+ {
3
+ "owner_total": 0,
4
+ "start": 0,
5
+ "results": [],
6
+ "limit": null
7
+ }
8
+ ]
@@ -0,0 +1,84 @@
1
+ [
2
+ {
3
+ "owner_total": 5,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "id": "virtual_server_image_id_01",
8
+ "uuid": "virtual_server_image_uuid_01",
9
+ "description": "virtual_server_image_description_01",
10
+ "updated_at": "2011-10-18T03:53:37Z",
11
+ "account_id": "a-shpoolxx",
12
+ "boot_dev_type": 1,
13
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
14
+ "state": "init",
15
+ "arch": "x86",
16
+ "is_public": false,
17
+ "created_at": "2011-10-18T03:53:37Z",
18
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
19
+ },
20
+
21
+ {
22
+ "id": "virtual_server_image_id_02",
23
+ "uuid": "virtual_server_image_uuid_02",
24
+ "description": "virtual_server_image_description_02",
25
+ "updated_at": "2011-10-18T03:53:37Z",
26
+ "account_id": "a-shpoolxx",
27
+ "boot_dev_type": 1,
28
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
29
+ "state": "init",
30
+ "arch": "x86",
31
+ "is_public": false,
32
+ "created_at": "2011-10-18T03:53:37Z",
33
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
34
+ },
35
+
36
+ {
37
+ "id": "virtual_server_image_id_03",
38
+ "uuid": "virtual_server_image_uuid_03",
39
+ "description": "virtual_server_image_description_03",
40
+ "updated_at": "2011-10-18T03:53:37Z",
41
+ "account_id": "a-shpoolxx",
42
+ "boot_dev_type": 1,
43
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
44
+ "state": "init",
45
+ "arch": "x86",
46
+ "is_public": false,
47
+ "created_at": "2011-10-18T03:53:37Z",
48
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
49
+ },
50
+
51
+ {
52
+ "id": "virtual_server_image_id_04",
53
+ "uuid": "virtual_server_image_uuid_04",
54
+ "description": "virtual_server_image_description_04",
55
+ "updated_at": "2011-10-18T03:53:37Z",
56
+ "account_id": "a-shpoolxx",
57
+ "boot_dev_type": 1,
58
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
59
+ "state": "init",
60
+ "arch": "x86",
61
+ "is_public": false,
62
+ "created_at": "2011-10-18T03:53:37Z",
63
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
64
+ },
65
+
66
+ {
67
+ "id": "virtual_server_image_id_05",
68
+ "uuid": "virtual_server_image_uuid_05",
69
+ "description": "virtual_server_image_description_05",
70
+ "updated_at": "2011-10-18T03:53:37Z",
71
+ "account_id": "a-shpoolxx",
72
+ "boot_dev_type": 1,
73
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
74
+ "state": "init",
75
+ "arch": "x86",
76
+ "is_public": false,
77
+ "created_at": "2011-10-18T03:53:37Z",
78
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
79
+ }
80
+
81
+ ],
82
+ "limit": null
83
+ }
84
+ ]
@@ -0,0 +1,856 @@
1
+ [
2
+ {
3
+ "owner_total": 60,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "id": "virtual_server_image_id_01",
8
+ "uuid": "virtual_server_image_uuid_01",
9
+ "description": "virtual_server_image_description_01",
10
+ "updated_at": "2011-10-18T03:53:37Z",
11
+ "account_id": "a-shpoolxx",
12
+ "boot_dev_type": 1,
13
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
14
+ "state": "init",
15
+ "arch": "x86",
16
+ "is_public": false,
17
+ "created_at": "2011-10-18T03:53:37Z",
18
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
19
+ },
20
+ {
21
+ "id": "virtual_server_image_id_02",
22
+ "uuid": "virtual_server_image_uuid_02",
23
+ "description": "virtual_server_image_description_02",
24
+ "updated_at": "2011-10-18T03:53:37Z",
25
+ "account_id": "a-shpoolxx",
26
+ "boot_dev_type": 1,
27
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
28
+ "state": "init",
29
+ "arch": "x86",
30
+ "is_public": false,
31
+ "created_at": "2011-10-18T03:53:37Z",
32
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
33
+ },
34
+ {
35
+ "id": "virtual_server_image_id_03",
36
+ "uuid": "virtual_server_image_uuid_03",
37
+ "description": "virtual_server_image_description_03",
38
+ "updated_at": "2011-10-18T03:53:37Z",
39
+ "account_id": "a-shpoolxx",
40
+ "boot_dev_type": 1,
41
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
42
+ "state": "init",
43
+ "arch": "x86",
44
+ "is_public": false,
45
+ "created_at": "2011-10-18T03:53:37Z",
46
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
47
+ },
48
+ {
49
+ "id": "virtual_server_image_id_04",
50
+ "uuid": "virtual_server_image_uuid_04",
51
+ "description": "virtual_server_image_description_04",
52
+ "updated_at": "2011-10-18T03:53:37Z",
53
+ "account_id": "a-shpoolxx",
54
+ "boot_dev_type": 1,
55
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
56
+ "state": "init",
57
+ "arch": "x86",
58
+ "is_public": false,
59
+ "created_at": "2011-10-18T03:53:37Z",
60
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
61
+ },
62
+ {
63
+ "id": "virtual_server_image_id_05",
64
+ "uuid": "virtual_server_image_uuid_05",
65
+ "description": "virtual_server_image_description_05",
66
+ "updated_at": "2011-10-18T03:53:37Z",
67
+ "account_id": "a-shpoolxx",
68
+ "boot_dev_type": 1,
69
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
70
+ "state": "init",
71
+ "arch": "x86",
72
+ "is_public": false,
73
+ "created_at": "2011-10-18T03:53:37Z",
74
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
75
+ },
76
+ {
77
+ "id": "virtual_server_image_id_06",
78
+ "uuid": "virtual_server_image_uuid_06",
79
+ "description": "virtual_server_image_description_06",
80
+ "updated_at": "2011-10-18T03:53:37Z",
81
+ "account_id": "a-shpoolxx",
82
+ "boot_dev_type": 1,
83
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
84
+ "state": "init",
85
+ "arch": "x86",
86
+ "is_public": false,
87
+ "created_at": "2011-10-18T03:53:37Z",
88
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
89
+ },
90
+ {
91
+ "id": "virtual_server_image_id_07",
92
+ "uuid": "virtual_server_image_uuid_07",
93
+ "description": "virtual_server_image_description_07",
94
+ "updated_at": "2011-10-18T03:53:37Z",
95
+ "account_id": "a-shpoolxx",
96
+ "boot_dev_type": 1,
97
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
98
+ "state": "init",
99
+ "arch": "x86",
100
+ "is_public": false,
101
+ "created_at": "2011-10-18T03:53:37Z",
102
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
103
+ },
104
+ {
105
+ "id": "virtual_server_image_id_08",
106
+ "uuid": "virtual_server_image_uuid_08",
107
+ "description": "virtual_server_image_description_08",
108
+ "updated_at": "2011-10-18T03:53:37Z",
109
+ "account_id": "a-shpoolxx",
110
+ "boot_dev_type": 1,
111
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
112
+ "state": "init",
113
+ "arch": "x86",
114
+ "is_public": false,
115
+ "created_at": "2011-10-18T03:53:37Z",
116
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
117
+ },
118
+ {
119
+ "id": "virtual_server_image_id_09",
120
+ "uuid": "virtual_server_image_uuid_09",
121
+ "description": "virtual_server_image_description_09",
122
+ "updated_at": "2011-10-18T03:53:37Z",
123
+ "account_id": "a-shpoolxx",
124
+ "boot_dev_type": 1,
125
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
126
+ "state": "init",
127
+ "arch": "x86",
128
+ "is_public": false,
129
+ "created_at": "2011-10-18T03:53:37Z",
130
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
131
+ },
132
+
133
+ {
134
+ "id": "virtual_server_image_id_10",
135
+ "uuid": "virtual_server_image_uuid_10",
136
+ "description": "virtual_server_image_description_10",
137
+ "updated_at": "2011-10-18T03:53:37Z",
138
+ "account_id": "a-shpoolxx",
139
+ "boot_dev_type": 1,
140
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
141
+ "state": "init",
142
+ "arch": "x86",
143
+ "is_public": false,
144
+ "created_at": "2011-10-18T03:53:37Z",
145
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
146
+ },
147
+ {
148
+ "id": "virtual_server_image_id_11",
149
+ "uuid": "virtual_server_image_uuid_11",
150
+ "description": "virtual_server_image_description_11",
151
+ "updated_at": "2011-10-18T03:53:37Z",
152
+ "account_id": "a-shpoolxx",
153
+ "boot_dev_type": 1,
154
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
155
+ "state": "init",
156
+ "arch": "x86",
157
+ "is_public": false,
158
+ "created_at": "2011-10-18T03:53:37Z",
159
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
160
+ },
161
+ {
162
+ "id": "virtual_server_image_id_12",
163
+ "uuid": "virtual_server_image_uuid_12",
164
+ "description": "virtual_server_image_description_12",
165
+ "updated_at": "2011-10-18T03:53:37Z",
166
+ "account_id": "a-shpoolxx",
167
+ "boot_dev_type": 1,
168
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
169
+ "state": "init",
170
+ "arch": "x86",
171
+ "is_public": false,
172
+ "created_at": "2011-10-18T03:53:37Z",
173
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
174
+ },
175
+ {
176
+ "id": "virtual_server_image_id_13",
177
+ "uuid": "virtual_server_image_uuid_13",
178
+ "description": "virtual_server_image_description_13",
179
+ "updated_at": "2011-10-18T03:53:37Z",
180
+ "account_id": "a-shpoolxx",
181
+ "boot_dev_type": 1,
182
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
183
+ "state": "init",
184
+ "arch": "x86",
185
+ "is_public": false,
186
+ "created_at": "2011-10-18T03:53:37Z",
187
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
188
+ },
189
+ {
190
+ "id": "virtual_server_image_id_14",
191
+ "uuid": "virtual_server_image_uuid_14",
192
+ "description": "virtual_server_image_description_14",
193
+ "updated_at": "2011-10-18T03:53:37Z",
194
+ "account_id": "a-shpoolxx",
195
+ "boot_dev_type": 1,
196
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
197
+ "state": "init",
198
+ "arch": "x86",
199
+ "is_public": false,
200
+ "created_at": "2011-10-18T03:53:37Z",
201
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
202
+ },
203
+ {
204
+ "id": "virtual_server_image_id_15",
205
+ "uuid": "virtual_server_image_uuid_15",
206
+ "description": "virtual_server_image_description_15",
207
+ "updated_at": "2011-10-18T03:53:37Z",
208
+ "account_id": "a-shpoolxx",
209
+ "boot_dev_type": 1,
210
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
211
+ "state": "init",
212
+ "arch": "x86",
213
+ "is_public": false,
214
+ "created_at": "2011-10-18T03:53:37Z",
215
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
216
+ },
217
+ {
218
+ "id": "virtual_server_image_id_16",
219
+ "uuid": "virtual_server_image_uuid_16",
220
+ "description": "virtual_server_image_description_16",
221
+ "updated_at": "2011-10-18T03:53:37Z",
222
+ "account_id": "a-shpoolxx",
223
+ "boot_dev_type": 1,
224
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
225
+ "state": "init",
226
+ "arch": "x86",
227
+ "is_public": false,
228
+ "created_at": "2011-10-18T03:53:37Z",
229
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
230
+ },
231
+ {
232
+ "id": "virtual_server_image_id_17",
233
+ "uuid": "virtual_server_image_uuid_17",
234
+ "description": "virtual_server_image_description_17",
235
+ "updated_at": "2011-10-18T03:53:37Z",
236
+ "account_id": "a-shpoolxx",
237
+ "boot_dev_type": 1,
238
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
239
+ "state": "init",
240
+ "arch": "x86",
241
+ "is_public": false,
242
+ "created_at": "2011-10-18T03:53:37Z",
243
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
244
+ },
245
+ {
246
+ "id": "virtual_server_image_id_18",
247
+ "uuid": "virtual_server_image_uuid_18",
248
+ "description": "virtual_server_image_description_18",
249
+ "updated_at": "2011-10-18T03:53:37Z",
250
+ "account_id": "a-shpoolxx",
251
+ "boot_dev_type": 1,
252
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
253
+ "state": "init",
254
+ "arch": "x86",
255
+ "is_public": false,
256
+ "created_at": "2011-10-18T03:53:37Z",
257
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
258
+ },
259
+ {
260
+ "id": "virtual_server_image_id_19",
261
+ "uuid": "virtual_server_image_uuid_19",
262
+ "description": "virtual_server_image_description_19",
263
+ "updated_at": "2011-10-18T03:53:37Z",
264
+ "account_id": "a-shpoolxx",
265
+ "boot_dev_type": 1,
266
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
267
+ "state": "init",
268
+ "arch": "x86",
269
+ "is_public": false,
270
+ "created_at": "2011-10-18T03:53:37Z",
271
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
272
+ },
273
+
274
+ {
275
+ "id": "virtual_server_image_id_20",
276
+ "uuid": "virtual_server_image_uuid_20",
277
+ "description": "virtual_server_image_description_20",
278
+ "updated_at": "2011-10-18T03:53:37Z",
279
+ "account_id": "a-shpoolxx",
280
+ "boot_dev_type": 1,
281
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
282
+ "state": "init",
283
+ "arch": "x86",
284
+ "is_public": false,
285
+ "created_at": "2011-10-18T03:53:37Z",
286
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
287
+ },
288
+ {
289
+ "id": "virtual_server_image_id_21",
290
+ "uuid": "virtual_server_image_uuid_21",
291
+ "description": "virtual_server_image_description_21",
292
+ "updated_at": "2011-10-18T03:53:37Z",
293
+ "account_id": "a-shpoolxx",
294
+ "boot_dev_type": 1,
295
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
296
+ "state": "init",
297
+ "arch": "x86",
298
+ "is_public": false,
299
+ "created_at": "2011-10-18T03:53:37Z",
300
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
301
+ },
302
+ {
303
+ "id": "virtual_server_image_id_22",
304
+ "uuid": "virtual_server_image_uuid_22",
305
+ "description": "virtual_server_image_description_22",
306
+ "updated_at": "2011-10-18T03:53:37Z",
307
+ "account_id": "a-shpoolxx",
308
+ "boot_dev_type": 1,
309
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
310
+ "state": "init",
311
+ "arch": "x86",
312
+ "is_public": false,
313
+ "created_at": "2011-10-18T03:53:37Z",
314
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
315
+ },
316
+ {
317
+ "id": "virtual_server_image_id_23",
318
+ "uuid": "virtual_server_image_uuid_23",
319
+ "description": "virtual_server_image_description_23",
320
+ "updated_at": "2011-10-18T03:53:37Z",
321
+ "account_id": "a-shpoolxx",
322
+ "boot_dev_type": 1,
323
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
324
+ "state": "init",
325
+ "arch": "x86",
326
+ "is_public": false,
327
+ "created_at": "2011-10-18T03:53:37Z",
328
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
329
+ },
330
+ {
331
+ "id": "virtual_server_image_id_24",
332
+ "uuid": "virtual_server_image_uuid_24",
333
+ "description": "virtual_server_image_description_24",
334
+ "updated_at": "2011-10-18T03:53:37Z",
335
+ "account_id": "a-shpoolxx",
336
+ "boot_dev_type": 1,
337
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
338
+ "state": "init",
339
+ "arch": "x86",
340
+ "is_public": false,
341
+ "created_at": "2011-10-18T03:53:37Z",
342
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
343
+ },
344
+ {
345
+ "id": "virtual_server_image_id_25",
346
+ "uuid": "virtual_server_image_uuid_25",
347
+ "description": "virtual_server_image_description_25",
348
+ "updated_at": "2011-10-18T03:53:37Z",
349
+ "account_id": "a-shpoolxx",
350
+ "boot_dev_type": 1,
351
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
352
+ "state": "init",
353
+ "arch": "x86",
354
+ "is_public": false,
355
+ "created_at": "2011-10-18T03:53:37Z",
356
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
357
+ },
358
+ {
359
+ "id": "virtual_server_image_id_26",
360
+ "uuid": "virtual_server_image_uuid_26",
361
+ "description": "virtual_server_image_description_26",
362
+ "updated_at": "2011-10-18T03:53:37Z",
363
+ "account_id": "a-shpoolxx",
364
+ "boot_dev_type": 1,
365
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
366
+ "state": "init",
367
+ "arch": "x86",
368
+ "is_public": false,
369
+ "created_at": "2011-10-18T03:53:37Z",
370
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
371
+ },
372
+ {
373
+ "id": "virtual_server_image_id_27",
374
+ "uuid": "virtual_server_image_uuid_27",
375
+ "description": "virtual_server_image_description_27",
376
+ "updated_at": "2011-10-18T03:53:37Z",
377
+ "account_id": "a-shpoolxx",
378
+ "boot_dev_type": 1,
379
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
380
+ "state": "init",
381
+ "arch": "x86",
382
+ "is_public": false,
383
+ "created_at": "2011-10-18T03:53:37Z",
384
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
385
+ },
386
+ {
387
+ "id": "virtual_server_image_id_28",
388
+ "uuid": "virtual_server_image_uuid_28",
389
+ "description": "virtual_server_image_description_28",
390
+ "updated_at": "2011-10-18T03:53:37Z",
391
+ "account_id": "a-shpoolxx",
392
+ "boot_dev_type": 1,
393
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
394
+ "state": "init",
395
+ "arch": "x86",
396
+ "is_public": false,
397
+ "created_at": "2011-10-18T03:53:37Z",
398
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
399
+ },
400
+ {
401
+ "id": "virtual_server_image_id_29",
402
+ "uuid": "virtual_server_image_uuid_29",
403
+ "description": "virtual_server_image_description_29",
404
+ "updated_at": "2011-10-18T03:53:37Z",
405
+ "account_id": "a-shpoolxx",
406
+ "boot_dev_type": 1,
407
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
408
+ "state": "init",
409
+ "arch": "x86",
410
+ "is_public": false,
411
+ "created_at": "2011-10-18T03:53:37Z",
412
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
413
+ },
414
+
415
+ {
416
+ "id": "virtual_server_image_id_30",
417
+ "uuid": "virtual_server_image_uuid_30",
418
+ "description": "virtual_server_image_description_30",
419
+ "updated_at": "2011-10-18T03:53:37Z",
420
+ "account_id": "a-shpoolxx",
421
+ "boot_dev_type": 1,
422
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
423
+ "state": "init",
424
+ "arch": "x86",
425
+ "is_public": false,
426
+ "created_at": "2011-10-18T03:53:37Z",
427
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
428
+ },
429
+ {
430
+ "id": "virtual_server_image_id_31",
431
+ "uuid": "virtual_server_image_uuid_31",
432
+ "description": "virtual_server_image_description_31",
433
+ "updated_at": "2011-10-18T03:53:37Z",
434
+ "account_id": "a-shpoolxx",
435
+ "boot_dev_type": 1,
436
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
437
+ "state": "init",
438
+ "arch": "x86",
439
+ "is_public": false,
440
+ "created_at": "2011-10-18T03:53:37Z",
441
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
442
+ },
443
+ {
444
+ "id": "virtual_server_image_id_32",
445
+ "uuid": "virtual_server_image_uuid_32",
446
+ "description": "virtual_server_image_description_32",
447
+ "updated_at": "2011-10-18T03:53:37Z",
448
+ "account_id": "a-shpoolxx",
449
+ "boot_dev_type": 1,
450
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
451
+ "state": "init",
452
+ "arch": "x86",
453
+ "is_public": false,
454
+ "created_at": "2011-10-18T03:53:37Z",
455
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
456
+ },
457
+ {
458
+ "id": "virtual_server_image_id_33",
459
+ "uuid": "virtual_server_image_uuid_33",
460
+ "description": "virtual_server_image_description_33",
461
+ "updated_at": "2011-10-18T03:53:37Z",
462
+ "account_id": "a-shpoolxx",
463
+ "boot_dev_type": 1,
464
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
465
+ "state": "init",
466
+ "arch": "x86",
467
+ "is_public": false,
468
+ "created_at": "2011-10-18T03:53:37Z",
469
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
470
+ },
471
+ {
472
+ "id": "virtual_server_image_id_34",
473
+ "uuid": "virtual_server_image_uuid_34",
474
+ "description": "virtual_server_image_description_34",
475
+ "updated_at": "2011-10-18T03:53:37Z",
476
+ "account_id": "a-shpoolxx",
477
+ "boot_dev_type": 1,
478
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
479
+ "state": "init",
480
+ "arch": "x86",
481
+ "is_public": false,
482
+ "created_at": "2011-10-18T03:53:37Z",
483
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
484
+ },
485
+ {
486
+ "id": "virtual_server_image_id_35",
487
+ "uuid": "virtual_server_image_uuid_35",
488
+ "description": "virtual_server_image_description_35",
489
+ "updated_at": "2011-10-18T03:53:37Z",
490
+ "account_id": "a-shpoolxx",
491
+ "boot_dev_type": 1,
492
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
493
+ "state": "init",
494
+ "arch": "x86",
495
+ "is_public": false,
496
+ "created_at": "2011-10-18T03:53:37Z",
497
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
498
+ },
499
+ {
500
+ "id": "virtual_server_image_id_36",
501
+ "uuid": "virtual_server_image_uuid_36",
502
+ "description": "virtual_server_image_description_36",
503
+ "updated_at": "2011-10-18T03:53:37Z",
504
+ "account_id": "a-shpoolxx",
505
+ "boot_dev_type": 1,
506
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
507
+ "state": "init",
508
+ "arch": "x86",
509
+ "is_public": false,
510
+ "created_at": "2011-10-18T03:53:37Z",
511
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
512
+ },
513
+ {
514
+ "id": "virtual_server_image_id_37",
515
+ "uuid": "virtual_server_image_uuid_37",
516
+ "description": "virtual_server_image_description_37",
517
+ "updated_at": "2011-10-18T03:53:37Z",
518
+ "account_id": "a-shpoolxx",
519
+ "boot_dev_type": 1,
520
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
521
+ "state": "init",
522
+ "arch": "x86",
523
+ "is_public": false,
524
+ "created_at": "2011-10-18T03:53:37Z",
525
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
526
+ },
527
+ {
528
+ "id": "virtual_server_image_id_38",
529
+ "uuid": "virtual_server_image_uuid_38",
530
+ "description": "virtual_server_image_description_38",
531
+ "updated_at": "2011-10-18T03:53:37Z",
532
+ "account_id": "a-shpoolxx",
533
+ "boot_dev_type": 1,
534
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
535
+ "state": "init",
536
+ "arch": "x86",
537
+ "is_public": false,
538
+ "created_at": "2011-10-18T03:53:37Z",
539
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
540
+ },
541
+ {
542
+ "id": "virtual_server_image_id_39",
543
+ "uuid": "virtual_server_image_uuid_39",
544
+ "description": "virtual_server_image_description_39",
545
+ "updated_at": "2011-10-18T03:53:37Z",
546
+ "account_id": "a-shpoolxx",
547
+ "boot_dev_type": 1,
548
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
549
+ "state": "init",
550
+ "arch": "x86",
551
+ "is_public": false,
552
+ "created_at": "2011-10-18T03:53:37Z",
553
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
554
+ },
555
+
556
+ {
557
+ "id": "virtual_server_image_id_40",
558
+ "uuid": "virtual_server_image_uuid_40",
559
+ "description": "virtual_server_image_description_40",
560
+ "updated_at": "2011-10-18T03:53:37Z",
561
+ "account_id": "a-shpoolxx",
562
+ "boot_dev_type": 1,
563
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
564
+ "state": "init",
565
+ "arch": "x86",
566
+ "is_public": false,
567
+ "created_at": "2011-10-18T03:53:37Z",
568
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
569
+ },
570
+ {
571
+ "id": "virtual_server_image_id_41",
572
+ "uuid": "virtual_server_image_uuid_41",
573
+ "description": "virtual_server_image_description_41",
574
+ "updated_at": "2011-10-18T03:53:37Z",
575
+ "account_id": "a-shpoolxx",
576
+ "boot_dev_type": 1,
577
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
578
+ "state": "init",
579
+ "arch": "x86",
580
+ "is_public": false,
581
+ "created_at": "2011-10-18T03:53:37Z",
582
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
583
+ },
584
+ {
585
+ "id": "virtual_server_image_id_42",
586
+ "uuid": "virtual_server_image_uuid_42",
587
+ "description": "virtual_server_image_description_42",
588
+ "updated_at": "2011-10-18T03:53:37Z",
589
+ "account_id": "a-shpoolxx",
590
+ "boot_dev_type": 1,
591
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
592
+ "state": "init",
593
+ "arch": "x86",
594
+ "is_public": false,
595
+ "created_at": "2011-10-18T03:53:37Z",
596
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
597
+ },
598
+ {
599
+ "id": "virtual_server_image_id_43",
600
+ "uuid": "virtual_server_image_uuid_43",
601
+ "description": "virtual_server_image_description_43",
602
+ "updated_at": "2011-10-18T03:53:37Z",
603
+ "account_id": "a-shpoolxx",
604
+ "boot_dev_type": 1,
605
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
606
+ "state": "init",
607
+ "arch": "x86",
608
+ "is_public": false,
609
+ "created_at": "2011-10-18T03:53:37Z",
610
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
611
+ },
612
+ {
613
+ "id": "virtual_server_image_id_44",
614
+ "uuid": "virtual_server_image_uuid_44",
615
+ "description": "virtual_server_image_description_44",
616
+ "updated_at": "2011-10-18T03:53:37Z",
617
+ "account_id": "a-shpoolxx",
618
+ "boot_dev_type": 1,
619
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
620
+ "state": "init",
621
+ "arch": "x86",
622
+ "is_public": false,
623
+ "created_at": "2011-10-18T03:53:37Z",
624
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
625
+ },
626
+ {
627
+ "id": "virtual_server_image_id_45",
628
+ "uuid": "virtual_server_image_uuid_45",
629
+ "description": "virtual_server_image_description_45",
630
+ "updated_at": "2011-10-18T03:53:37Z",
631
+ "account_id": "a-shpoolxx",
632
+ "boot_dev_type": 1,
633
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
634
+ "state": "init",
635
+ "arch": "x86",
636
+ "is_public": false,
637
+ "created_at": "2011-10-18T03:53:37Z",
638
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
639
+ },
640
+ {
641
+ "id": "virtual_server_image_id_46",
642
+ "uuid": "virtual_server_image_uuid_46",
643
+ "description": "virtual_server_image_description_46",
644
+ "updated_at": "2011-10-18T03:53:37Z",
645
+ "account_id": "a-shpoolxx",
646
+ "boot_dev_type": 1,
647
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
648
+ "state": "init",
649
+ "arch": "x86",
650
+ "is_public": false,
651
+ "created_at": "2011-10-18T03:53:37Z",
652
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
653
+ },
654
+ {
655
+ "id": "virtual_server_image_id_47",
656
+ "uuid": "virtual_server_image_uuid_47",
657
+ "description": "virtual_server_image_description_47",
658
+ "updated_at": "2011-10-18T03:53:37Z",
659
+ "account_id": "a-shpoolxx",
660
+ "boot_dev_type": 1,
661
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
662
+ "state": "init",
663
+ "arch": "x86",
664
+ "is_public": false,
665
+ "created_at": "2011-10-18T03:53:37Z",
666
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
667
+ },
668
+ {
669
+ "id": "virtual_server_image_id_48",
670
+ "uuid": "virtual_server_image_uuid_48",
671
+ "description": "virtual_server_image_description_48",
672
+ "updated_at": "2011-10-18T03:53:37Z",
673
+ "account_id": "a-shpoolxx",
674
+ "boot_dev_type": 1,
675
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
676
+ "state": "init",
677
+ "arch": "x86",
678
+ "is_public": false,
679
+ "created_at": "2011-10-18T03:53:37Z",
680
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
681
+ },
682
+ {
683
+ "id": "virtual_server_image_id_49",
684
+ "uuid": "virtual_server_image_uuid_49",
685
+ "description": "virtual_server_image_description_49",
686
+ "updated_at": "2011-10-18T03:53:37Z",
687
+ "account_id": "a-shpoolxx",
688
+ "boot_dev_type": 1,
689
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
690
+ "state": "init",
691
+ "arch": "x86",
692
+ "is_public": false,
693
+ "created_at": "2011-10-18T03:53:37Z",
694
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
695
+ },
696
+
697
+ {
698
+ "id": "virtual_server_image_id_50",
699
+ "uuid": "virtual_server_image_uuid_50",
700
+ "description": "virtual_server_image_description_50",
701
+ "updated_at": "2011-10-18T03:53:37Z",
702
+ "account_id": "a-shpoolxx",
703
+ "boot_dev_type": 1,
704
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
705
+ "state": "init",
706
+ "arch": "x86",
707
+ "is_public": false,
708
+ "created_at": "2011-10-18T03:53:37Z",
709
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
710
+ },
711
+ {
712
+ "id": "virtual_server_image_id_51",
713
+ "uuid": "virtual_server_image_uuid_51",
714
+ "description": "virtual_server_image_description_51",
715
+ "updated_at": "2011-10-18T03:53:37Z",
716
+ "account_id": "a-shpoolxx",
717
+ "boot_dev_type": 1,
718
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
719
+ "state": "init",
720
+ "arch": "x86",
721
+ "is_public": false,
722
+ "created_at": "2011-10-18T03:53:37Z",
723
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
724
+ },
725
+ {
726
+ "id": "virtual_server_image_id_52",
727
+ "uuid": "virtual_server_image_uuid_52",
728
+ "description": "virtual_server_image_description_52",
729
+ "updated_at": "2011-10-18T03:53:37Z",
730
+ "account_id": "a-shpoolxx",
731
+ "boot_dev_type": 1,
732
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
733
+ "state": "init",
734
+ "arch": "x86",
735
+ "is_public": false,
736
+ "created_at": "2011-10-18T03:53:37Z",
737
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
738
+ },
739
+ {
740
+ "id": "virtual_server_image_id_53",
741
+ "uuid": "virtual_server_image_uuid_53",
742
+ "description": "virtual_server_image_description_53",
743
+ "updated_at": "2011-10-18T03:53:37Z",
744
+ "account_id": "a-shpoolxx",
745
+ "boot_dev_type": 1,
746
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
747
+ "state": "init",
748
+ "arch": "x86",
749
+ "is_public": false,
750
+ "created_at": "2011-10-18T03:53:37Z",
751
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
752
+ },
753
+ {
754
+ "id": "virtual_server_image_id_54",
755
+ "uuid": "virtual_server_image_uuid_54",
756
+ "description": "virtual_server_image_description_54",
757
+ "updated_at": "2011-10-18T03:53:37Z",
758
+ "account_id": "a-shpoolxx",
759
+ "boot_dev_type": 1,
760
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
761
+ "state": "init",
762
+ "arch": "x86",
763
+ "is_public": false,
764
+ "created_at": "2011-10-18T03:53:37Z",
765
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
766
+ },
767
+ {
768
+ "id": "virtual_server_image_id_55",
769
+ "uuid": "virtual_server_image_uuid_55",
770
+ "description": "virtual_server_image_description_55",
771
+ "updated_at": "2011-10-18T03:53:37Z",
772
+ "account_id": "a-shpoolxx",
773
+ "boot_dev_type": 1,
774
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
775
+ "state": "init",
776
+ "arch": "x86",
777
+ "is_public": false,
778
+ "created_at": "2011-10-18T03:53:37Z",
779
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
780
+ },
781
+ {
782
+ "id": "virtual_server_image_id_56",
783
+ "uuid": "virtual_server_image_uuid_56",
784
+ "description": "virtual_server_image_description_56",
785
+ "updated_at": "2011-10-18T03:53:37Z",
786
+ "account_id": "a-shpoolxx",
787
+ "boot_dev_type": 1,
788
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
789
+ "state": "init",
790
+ "arch": "x86",
791
+ "is_public": false,
792
+ "created_at": "2011-10-18T03:53:37Z",
793
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
794
+ },
795
+ {
796
+ "id": "virtual_server_image_id_57",
797
+ "uuid": "virtual_server_image_uuid_57",
798
+ "description": "virtual_server_image_description_57",
799
+ "updated_at": "2011-10-18T03:53:37Z",
800
+ "account_id": "a-shpoolxx",
801
+ "boot_dev_type": 1,
802
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
803
+ "state": "init",
804
+ "arch": "x86",
805
+ "is_public": false,
806
+ "created_at": "2011-10-18T03:53:37Z",
807
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
808
+ },
809
+ {
810
+ "id": "virtual_server_image_id_58",
811
+ "uuid": "virtual_server_image_uuid_58",
812
+ "description": "virtual_server_image_description_58",
813
+ "updated_at": "2011-10-18T03:53:37Z",
814
+ "account_id": "a-shpoolxx",
815
+ "boot_dev_type": 1,
816
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
817
+ "state": "init",
818
+ "arch": "x86",
819
+ "is_public": false,
820
+ "created_at": "2011-10-18T03:53:37Z",
821
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
822
+ },
823
+ {
824
+ "id": "virtual_server_image_id_59",
825
+ "uuid": "virtual_server_image_uuid_59",
826
+ "description": "virtual_server_image_description_59",
827
+ "updated_at": "2011-10-18T03:53:37Z",
828
+ "account_id": "a-shpoolxx",
829
+ "boot_dev_type": 1,
830
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
831
+ "state": "init",
832
+ "arch": "x86",
833
+ "is_public": false,
834
+ "created_at": "2011-10-18T03:53:37Z",
835
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
836
+ },
837
+
838
+ {
839
+ "id": "virtual_server_image_id_60",
840
+ "uuid": "virtual_server_image_uuid_60",
841
+ "description": "virtual_server_image_description_60",
842
+ "updated_at": "2011-10-18T03:53:37Z",
843
+ "account_id": "a-shpoolxx",
844
+ "boot_dev_type": 1,
845
+ "source": "--- \n:snapshot_id: snap-lucid6\n",
846
+ "state": "init",
847
+ "arch": "x86",
848
+ "is_public": false,
849
+ "created_at": "2011-10-18T03:53:37Z",
850
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
851
+ }
852
+
853
+ ],
854
+ "limit": null
855
+ }
856
+ ]