fog-softlayer 0.4.2.pre → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +5 -13
  2. data/CONTRIBUTORS.md +2 -0
  3. data/examples/compute.md +37 -1
  4. data/lib/fog/softlayer/compute.rb +8 -1
  5. data/lib/fog/softlayer/dns.rb +0 -1
  6. data/lib/fog/softlayer/ext/hash.rb +6 -0
  7. data/lib/fog/softlayer/ext/string.rb +20 -0
  8. data/lib/fog/softlayer/models/compute/flavor.rb +0 -2
  9. data/lib/fog/softlayer/models/compute/flavors.rb +0 -1
  10. data/lib/fog/softlayer/models/compute/image.rb +0 -2
  11. data/lib/fog/softlayer/models/compute/images.rb +0 -1
  12. data/lib/fog/softlayer/models/compute/key_pair.rb +0 -2
  13. data/lib/fog/softlayer/models/compute/key_pairs.rb +0 -1
  14. data/lib/fog/softlayer/models/compute/network_component.rb +0 -2
  15. data/lib/fog/softlayer/models/compute/network_components.rb +0 -1
  16. data/lib/fog/softlayer/models/compute/server.rb +10 -0
  17. data/lib/fog/softlayer/models/compute/servers.rb +25 -1
  18. data/lib/fog/softlayer/models/compute/tag.rb +0 -2
  19. data/lib/fog/softlayer/models/compute/tags.rb +0 -1
  20. data/lib/fog/softlayer/models/dns/domain.rb +1 -1
  21. data/lib/fog/softlayer/models/dns/domains.rb +1 -1
  22. data/lib/fog/softlayer/models/dns/record.rb +0 -1
  23. data/lib/fog/softlayer/models/dns/records.rb +1 -1
  24. data/lib/fog/softlayer/models/network/datacenter.rb +0 -2
  25. data/lib/fog/softlayer/models/network/datacenters.rb +0 -1
  26. data/lib/fog/softlayer/models/network/ip.rb +0 -2
  27. data/lib/fog/softlayer/models/network/ips.rb +0 -1
  28. data/lib/fog/softlayer/models/network/network.rb +0 -2
  29. data/lib/fog/softlayer/models/network/networks.rb +0 -1
  30. data/lib/fog/softlayer/models/network/subnet.rb +0 -2
  31. data/lib/fog/softlayer/models/network/subnets.rb +0 -1
  32. data/lib/fog/softlayer/models/network/tag.rb +0 -1
  33. data/lib/fog/softlayer/models/network/tags.rb +1 -1
  34. data/lib/fog/softlayer/models/product/item.rb +0 -1
  35. data/lib/fog/softlayer/models/product/items.rb +0 -1
  36. data/lib/fog/softlayer/models/product/package.rb +0 -1
  37. data/lib/fog/softlayer/models/product/packages.rb +0 -1
  38. data/lib/fog/softlayer/models/storage/directories.rb +0 -1
  39. data/lib/fog/softlayer/models/storage/directory.rb +0 -1
  40. data/lib/fog/softlayer/models/storage/file.rb +0 -2
  41. data/lib/fog/softlayer/models/storage/files.rb +0 -1
  42. data/lib/fog/softlayer/network.rb +0 -2
  43. data/lib/fog/softlayer/product.rb +0 -1
  44. data/lib/fog/softlayer/requests/compute/create_bare_metal_server.rb +1 -0
  45. data/lib/fog/softlayer/requests/compute/create_vms.rb +1 -0
  46. data/lib/fog/softlayer/requests/compute/get_bare_metal_active_tickets.rb +79 -0
  47. data/lib/fog/softlayer/requests/compute/get_bare_metal_create_options.rb +1116 -0
  48. data/lib/fog/softlayer/requests/compute/get_bare_metal_server_by_ip.rb +32 -0
  49. data/lib/fog/softlayer/requests/compute/get_bare_metal_users.rb +148 -0
  50. data/lib/fog/softlayer/requests/compute/get_virtual_guest_active_tickets.rb +79 -0
  51. data/lib/fog/softlayer/requests/compute/get_virtual_guest_by_ip.rb +32 -0
  52. data/lib/fog/softlayer/requests/compute/get_virtual_guest_create_options.rb +4060 -0
  53. data/lib/fog/softlayer/requests/compute/get_virtual_guest_users.rb +148 -0
  54. data/lib/fog/softlayer/slapi.rb +96 -0
  55. data/lib/fog/softlayer/storage.rb +1 -3
  56. data/lib/fog/softlayer/version.rb +1 -1
  57. data/lib/fog/softlayer.rb +69 -6
  58. data/tests/softlayer/requests/compute/bmc_tests.rb +38 -0
  59. data/tests/softlayer/requests/compute/vm_tests.rb +37 -0
  60. metadata +41 -32
  61. data/lib/fog/softlayer/core.rb +0 -176
@@ -0,0 +1,4060 @@
1
+ #
2
+ # Author:: Matheus Francisco Barra Mina (<mfbmina@gmail.com>)
3
+ # © Copyright IBM Corporation 2015.
4
+ #
5
+ # LICENSE: MIT (http://opensource.org/licenses/MIT)
6
+ #
7
+ module Fog
8
+ module Compute
9
+ class Softlayer
10
+ class Mock
11
+ # Gets all Virtual Guest buy options
12
+ # @return [Excon::Response]
13
+ def get_virtual_guest_create_options
14
+ response = Excon::Response.new
15
+ response.body = virtual_guest_options
16
+ response.status = 200
17
+ response
18
+ end
19
+ end
20
+
21
+ class Real
22
+ def get_virtual_guest_create_options
23
+ request(:virtual_guest, "getCreateObjectOptions", :http_method => :GET)
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+
30
+ module Fog
31
+ module Compute
32
+ class Softlayer
33
+ class Mock
34
+ def virtual_guest_options
35
+ {
36
+ "blockDevices"=>
37
+ [
38
+ {
39
+ "itemPrice"=>
40
+ {
41
+ "hourlyRecurringFee"=>"0",
42
+ "recurringFee"=>"0",
43
+ "item"=>
44
+ {
45
+ "description"=>"25 GB (SAN)"
46
+ }
47
+ },
48
+ "template"=>
49
+ {
50
+ "id"=>nil,
51
+ "blockDevices"=>
52
+ [
53
+ {
54
+ "device"=>"0",
55
+ "diskImage"=>
56
+ {
57
+ "capacity"=>25
58
+ }
59
+ }
60
+ ],
61
+ "localDiskFlag"=>false
62
+ }
63
+ },
64
+ {
65
+ "itemPrice"=>
66
+ {
67
+ "hourlyRecurringFee"=>".014",
68
+ "recurringFee"=>"10.29",
69
+ "item"=>
70
+ {
71
+ "description"=>"100 GB (SAN)"
72
+ }
73
+ },
74
+ "template"=>
75
+ {
76
+ "id"=>nil,
77
+ "blockDevices"=>
78
+ [
79
+ {
80
+ "device"=>"0",
81
+ "diskImage"=>
82
+ {
83
+ "capacity"=>100
84
+ }
85
+ }
86
+ ],
87
+ "localDiskFlag"=>false
88
+ }
89
+ },
90
+ {
91
+ "itemPrice"=>
92
+ {
93
+ "hourlyRecurringFee"=>".006",
94
+ "recurringFee"=>"4.57",
95
+ "item"=>
96
+ {
97
+ "description"=>"10 GB (SAN)"
98
+ }
99
+ },
100
+ "template"=>
101
+ {
102
+ "id"=>nil,
103
+ "blockDevices"=>
104
+ [
105
+ {
106
+ "device"=>"2",
107
+ "diskImage"=>
108
+ {
109
+ "capacity"=>10
110
+ }
111
+ }
112
+ ],
113
+ "localDiskFlag"=>false
114
+ }
115
+ },
116
+ {
117
+ "itemPrice"=>
118
+ {
119
+ "hourlyRecurringFee"=>".008",
120
+ "recurringFee"=>"5.71",
121
+ "item"=>
122
+ {
123
+ "description"=>"20 GB (SAN)"
124
+ }
125
+ },
126
+ "template"=>
127
+ {
128
+ "id"=>nil,
129
+ "blockDevices"=>
130
+ [
131
+ {
132
+ "device"=>"2",
133
+ "diskImage"=>
134
+ {
135
+ "capacity"=>20
136
+ }
137
+ }
138
+ ],
139
+ "localDiskFlag"=>false
140
+ }
141
+ },
142
+ {
143
+ "itemPrice"=>
144
+ {
145
+ "hourlyRecurringFee"=>".009",
146
+ "recurringFee"=>"6.5",
147
+ "item"=>
148
+ {
149
+ "description"=>"25 GB (SAN)"
150
+ }
151
+ },
152
+ "template"=>
153
+ {
154
+ "id"=>nil,
155
+ "blockDevices"=>
156
+ [
157
+ {
158
+ "device"=>"2",
159
+ "diskImage"=>
160
+ {
161
+ "capacity"=>25
162
+ }
163
+ }
164
+ ],
165
+ "localDiskFlag"=>false
166
+ }
167
+ },
168
+ {
169
+ "itemPrice"=>
170
+ {
171
+ "hourlyRecurringFee"=>".01",
172
+ "recurringFee"=>"6.86",
173
+ "item"=>
174
+ {
175
+ "description"=>"30 GB (SAN)"
176
+ }
177
+ },
178
+ "template"=>
179
+ {
180
+ "id"=>nil,
181
+ "blockDevices"=>
182
+ [
183
+ {
184
+ "device"=>"2",
185
+ "diskImage"=>
186
+ {
187
+ "capacity"=>30
188
+ }
189
+ }
190
+ ],
191
+ "localDiskFlag"=>false
192
+ }
193
+ },
194
+ {
195
+ "itemPrice"=>
196
+ {
197
+ "hourlyRecurringFee"=>".011",
198
+ "recurringFee"=>"8",
199
+ "item"=>
200
+ {
201
+ "description"=>"40 GB (SAN)"
202
+ }
203
+ },
204
+ "template"=>
205
+ {
206
+ "id"=>nil,
207
+ "blockDevices"=>
208
+ [
209
+ {
210
+ "device"=>"2",
211
+ "diskImage"=>
212
+ {
213
+ "capacity"=>40
214
+ }
215
+ }
216
+ ],
217
+ "localDiskFlag"=>false
218
+ }
219
+ },
220
+ {
221
+ "itemPrice"=>
222
+ {
223
+ "hourlyRecurringFee"=>".012",
224
+ "recurringFee"=>"9.14",
225
+ "item"=>
226
+ {
227
+ "description"=>"50 GB (SAN)"
228
+ }
229
+ },
230
+ "template"=>
231
+ {
232
+ "id"=>nil,
233
+ "blockDevices"=>
234
+ [
235
+ {
236
+ "device"=>"2",
237
+ "diskImage"=>
238
+ {
239
+ "capacity"=>50
240
+ }
241
+ }
242
+ ],
243
+ "localDiskFlag"=>false
244
+ }
245
+ },
246
+ {
247
+ "itemPrice"=>
248
+ {
249
+ "hourlyRecurringFee"=>".013",
250
+ "recurringFee"=>"9.71",
251
+ "item"=>
252
+ {
253
+ "description"=>"75 GB (SAN)"
254
+ }
255
+ },
256
+ "template"=>
257
+ {
258
+ "id"=>nil,
259
+ "blockDevices"=>
260
+ [
261
+ {
262
+ "device"=>"2",
263
+ "diskImage"=>
264
+ {
265
+ "capacity"=>75
266
+ }
267
+ }
268
+ ],
269
+ "localDiskFlag"=>false
270
+ }
271
+ },
272
+ {
273
+ "itemPrice"=>
274
+ {
275
+ "hourlyRecurringFee"=>".014",
276
+ "recurringFee"=>"10.29",
277
+ "item"=>
278
+ {
279
+ "description"=>"100 GB (SAN)"
280
+ }
281
+ },
282
+ "template"=>
283
+ {
284
+ "id"=>nil,
285
+ "blockDevices"=>
286
+ [
287
+ {
288
+ "device"=>"2",
289
+ "diskImage"=>
290
+ {
291
+ "capacity"=>100
292
+ }
293
+ }
294
+ ],
295
+ "localDiskFlag"=>false
296
+ }
297
+ },
298
+ {
299
+ "itemPrice"=>
300
+ {
301
+ "hourlyRecurringFee"=>".015",
302
+ "recurringFee"=>"10.86",
303
+ "item"=>
304
+ {
305
+ "description"=>"125 GB (SAN)"
306
+ }
307
+ },
308
+ "template"=>
309
+ {
310
+ "id"=>nil,
311
+ "blockDevices"=>
312
+ [
313
+ {
314
+ "device"=>"2",
315
+ "diskImage"=>
316
+ {
317
+ "capacity"=>125
318
+ }
319
+ }
320
+ ],
321
+ "localDiskFlag"=>false
322
+ }
323
+ },
324
+ {
325
+ "itemPrice"=>
326
+ {
327
+ "hourlyRecurringFee"=>".016",
328
+ "recurringFee"=>"11.43",
329
+ "item"=>
330
+ {
331
+ "description"=>"150 GB (SAN)"
332
+ }
333
+ },
334
+ "template"=>
335
+ {
336
+ "id"=>nil,
337
+ "blockDevices"=>
338
+ [
339
+ {
340
+ "device"=>"2",
341
+ "diskImage"=>
342
+ {
343
+ "capacity"=>150
344
+ }
345
+ }
346
+ ],
347
+ "localDiskFlag"=>false
348
+ }
349
+ },
350
+ {
351
+ "itemPrice"=>
352
+ {
353
+ "hourlyRecurringFee"=>".017",
354
+ "recurringFee"=>"12",
355
+ "item"=>
356
+ {
357
+ "description"=>"175 GB (SAN)"
358
+ }
359
+ },
360
+ "template"=>
361
+ {
362
+ "id"=>nil,
363
+ "blockDevices"=>
364
+ [
365
+ {
366
+ "device"=>"2",
367
+ "diskImage"=>
368
+ {
369
+ "capacity"=>175
370
+ }
371
+ }
372
+ ],
373
+ "localDiskFlag"=>false
374
+ }
375
+ },
376
+ {
377
+ "itemPrice"=>
378
+ {
379
+ "hourlyRecurringFee"=>".018",
380
+ "recurringFee"=>"12.57",
381
+ "item"=>
382
+ {
383
+ "description"=>"200 GB (SAN)"
384
+ }
385
+ },
386
+ "template"=>
387
+ {
388
+ "id"=>nil,
389
+ "blockDevices"=>
390
+ [
391
+ {
392
+ "device"=>"2",
393
+ "diskImage"=>
394
+ {
395
+ "capacity"=>200
396
+ }
397
+ }
398
+ ],
399
+ "localDiskFlag"=>false
400
+ }
401
+ },
402
+ {
403
+ "itemPrice"=>
404
+ {
405
+ "hourlyRecurringFee"=>".02",
406
+ "recurringFee"=>"14.29",
407
+ "item"=>
408
+ {
409
+ "description"=>"250 GB (SAN)"
410
+ }
411
+ },
412
+ "template"=>
413
+ {
414
+ "id"=>nil,
415
+ "blockDevices"=>
416
+ [
417
+ {
418
+ "device"=>"2",
419
+ "diskImage"=>
420
+ {
421
+ "capacity"=>250
422
+ }
423
+ }
424
+ ],
425
+ "localDiskFlag"=>false
426
+ }
427
+ },
428
+ {
429
+ "itemPrice"=>
430
+ {
431
+ "hourlyRecurringFee"=>".025",
432
+ "recurringFee"=>"18.57",
433
+ "item"=>
434
+ {
435
+ "description"=>"300 GB (SAN)"
436
+ }
437
+ },
438
+ "template"=>
439
+ {
440
+ "id"=>nil,
441
+ "blockDevices"=>
442
+ [
443
+ {
444
+ "device"=>"2",
445
+ "diskImage"=>
446
+ {
447
+ "capacity"=>300
448
+ }
449
+ }
450
+ ],
451
+ "localDiskFlag"=>false
452
+ }
453
+ },
454
+ {
455
+ "itemPrice"=>
456
+ {
457
+ "hourlyRecurringFee"=>".031",
458
+ "recurringFee"=>"22.86",
459
+ "item"=>
460
+ {
461
+ "description"=>"350 GB (SAN)"
462
+ }
463
+ },
464
+ "template"=>
465
+ {
466
+ "id"=>nil,
467
+ "blockDevices"=>
468
+ [
469
+ {
470
+ "device"=>"2",
471
+ "diskImage"=>
472
+ {
473
+ "capacity"=>350
474
+ }
475
+ }
476
+ ],
477
+ "localDiskFlag"=>false
478
+ }
479
+ },
480
+ {
481
+ "itemPrice"=>
482
+ {
483
+ "hourlyRecurringFee"=>".035",
484
+ "recurringFee"=>"25.71",
485
+ "item"=>
486
+ {
487
+ "description"=>"400 GB (SAN)"
488
+ }
489
+ },
490
+ "template"=>
491
+ {
492
+ "id"=>nil,
493
+ "blockDevices"=>
494
+ [
495
+ {
496
+ "device"=>"2",
497
+ "diskImage"=>
498
+ {
499
+ "capacity"=>400
500
+ }
501
+ }
502
+ ],
503
+ "localDiskFlag"=>false
504
+ }
505
+ },
506
+ {
507
+ "itemPrice"=>
508
+ {
509
+ "hourlyRecurringFee"=>".039",
510
+ "recurringFee"=>"28.57",
511
+ "item"=>
512
+ {
513
+ "description"=>"500 GB (SAN)"
514
+ }
515
+ },
516
+ "template"=>
517
+ {
518
+ "id"=>nil,
519
+ "blockDevices"=>
520
+ [
521
+ {
522
+ "device"=>"2",
523
+ "diskImage"=>
524
+ {
525
+ "capacity"=>500
526
+ }
527
+ }
528
+ ],
529
+ "localDiskFlag"=>false
530
+ }
531
+ },
532
+ {
533
+ "itemPrice"=>
534
+ {
535
+ "hourlyRecurringFee"=>".059",
536
+ "recurringFee"=>"42.86",
537
+ "item"=>
538
+ {
539
+ "description"=>"750 GB (SAN)"
540
+ }
541
+ },
542
+ "template"=>
543
+ {
544
+ "id"=>nil,
545
+ "blockDevices"=>
546
+ [
547
+ {
548
+ "device"=>"2",
549
+ "diskImage"=>
550
+ {
551
+ "capacity"=>750
552
+ }
553
+ }
554
+ ],
555
+ "localDiskFlag"=>false
556
+ }
557
+ },
558
+ {
559
+ "itemPrice"=>
560
+ {
561
+ "hourlyRecurringFee"=>".078",
562
+ "recurringFee"=>"57.14",
563
+ "item"=>
564
+ {
565
+ "description"=>"1.00 TB (SAN)"
566
+ }
567
+ },
568
+ "template"=>
569
+ {
570
+ "id"=>nil,
571
+ "blockDevices"=>
572
+ [
573
+ {
574
+ "device"=>"2",
575
+ "diskImage"=>
576
+ {
577
+ "capacity"=>1000
578
+ }
579
+ }
580
+ ],
581
+ "localDiskFlag"=>false
582
+ }
583
+ },
584
+ {
585
+ "itemPrice"=>
586
+ {
587
+ "hourlyRecurringFee"=>".117",
588
+ "recurringFee"=>"85.71",
589
+ "item"=>
590
+ {
591
+ "description"=>"1.50 TB (SAN)"
592
+ }
593
+ },
594
+ "template"=>
595
+ {
596
+ "id"=>nil,
597
+ "blockDevices"=>
598
+ [
599
+ {
600
+ "device"=>"2",
601
+ "diskImage"=>
602
+ {
603
+ "capacity"=>1500
604
+ }
605
+ }
606
+ ],
607
+ "localDiskFlag"=>false
608
+ }
609
+ },
610
+ {
611
+ "itemPrice"=>
612
+ {
613
+ "hourlyRecurringFee"=>".157",
614
+ "recurringFee"=>"114.29",
615
+ "item"=>
616
+ {
617
+ "description"=>"2.00 TB (SAN)"
618
+ }
619
+ },
620
+ "template"=>
621
+ {
622
+ "id"=>nil,
623
+ "blockDevices"=>
624
+ [
625
+ {
626
+ "device"=>"2",
627
+ "diskImage"=>
628
+ {
629
+ "capacity"=>2000
630
+ }
631
+ }
632
+ ],
633
+ "localDiskFlag"=>false
634
+ }
635
+ },
636
+ {
637
+ "itemPrice"=>
638
+ {
639
+ "hourlyRecurringFee"=>".006",
640
+ "recurringFee"=>"4.57",
641
+ "item"=>
642
+ {
643
+ "description"=>"10 GB (SAN)"
644
+ }
645
+ },
646
+ "template"=>
647
+ {
648
+ "id"=>nil,
649
+ "blockDevices"=>
650
+ [
651
+ {
652
+ "device"=>"3",
653
+ "diskImage"=>
654
+ {
655
+ "capacity"=>10
656
+ }
657
+ }
658
+ ],
659
+ "localDiskFlag"=>false
660
+ }
661
+ },
662
+ {
663
+ "itemPrice"=>
664
+ {
665
+ "hourlyRecurringFee"=>".008",
666
+ "recurringFee"=>"5.71",
667
+ "item"=>
668
+ {
669
+ "description"=>"20 GB (SAN)"
670
+ }
671
+ },
672
+ "template"=>
673
+ {
674
+ "id"=>nil,
675
+ "blockDevices"=>
676
+ [
677
+ {
678
+ "device"=>"3",
679
+ "diskImage"=>
680
+ {
681
+ "capacity"=>20
682
+ }
683
+ }
684
+ ],
685
+ "localDiskFlag"=>false
686
+ }
687
+ },
688
+ {
689
+ "itemPrice"=>
690
+ {
691
+ "hourlyRecurringFee"=>".009",
692
+ "recurringFee"=>"6.5",
693
+ "item"=>
694
+ {
695
+ "description"=>"25 GB (SAN)"
696
+ }
697
+ },
698
+ "template"=>
699
+ {
700
+ "id"=>nil,
701
+ "blockDevices"=>
702
+ [
703
+ {
704
+ "device"=>"3",
705
+ "diskImage"=>
706
+ {
707
+ "capacity"=>25
708
+ }
709
+ }
710
+ ],
711
+ "localDiskFlag"=>false
712
+ }
713
+ },
714
+ {
715
+ "itemPrice"=>
716
+ {
717
+ "hourlyRecurringFee"=>".01",
718
+ "recurringFee"=>"6.86",
719
+ "item"=>
720
+ {
721
+ "description"=>"30 GB (SAN)"
722
+ }
723
+ },
724
+ "template"=>
725
+ {
726
+ "id"=>nil,
727
+ "blockDevices"=>
728
+ [
729
+ {
730
+ "device"=>"3",
731
+ "diskImage"=>
732
+ {
733
+ "capacity"=>30
734
+ }
735
+ }
736
+ ],
737
+ "localDiskFlag"=>false
738
+ }
739
+ },
740
+ {
741
+ "itemPrice"=>
742
+ {
743
+ "hourlyRecurringFee"=>".011",
744
+ "recurringFee"=>"8",
745
+ "item"=>
746
+ {
747
+ "description"=>"40 GB (SAN)"
748
+ }
749
+ },
750
+ "template"=>
751
+ {
752
+ "id"=>nil,
753
+ "blockDevices"=>
754
+ [
755
+ {
756
+ "device"=>"3",
757
+ "diskImage"=>
758
+ {
759
+ "capacity"=>40
760
+ }
761
+ }
762
+ ],
763
+ "localDiskFlag"=>false
764
+ }
765
+ },
766
+ {
767
+ "itemPrice"=>
768
+ {
769
+ "hourlyRecurringFee"=>".012",
770
+ "recurringFee"=>"9.14",
771
+ "item"=>
772
+ {
773
+ "description"=>"50 GB (SAN)"
774
+ }
775
+ },
776
+ "template"=>
777
+ {
778
+ "id"=>nil,
779
+ "blockDevices"=>
780
+ [
781
+ {
782
+ "device"=>"3",
783
+ "diskImage"=>
784
+ {
785
+ "capacity"=>50
786
+ }
787
+ }
788
+ ],
789
+ "localDiskFlag"=>false
790
+ }
791
+ },
792
+ {
793
+ "itemPrice"=>
794
+ {
795
+ "hourlyRecurringFee"=>".013",
796
+ "recurringFee"=>"9.71",
797
+ "item"=>
798
+ {
799
+ "description"=>"75 GB (SAN)"
800
+ }
801
+ },
802
+ "template"=>
803
+ {
804
+ "id"=>nil,
805
+ "blockDevices"=>
806
+ [
807
+ {
808
+ "device"=>"3",
809
+ "diskImage"=>
810
+ {
811
+ "capacity"=>75
812
+ }
813
+ }
814
+ ],
815
+ "localDiskFlag"=>false
816
+ }
817
+ },
818
+ {
819
+ "itemPrice"=>
820
+ {
821
+ "hourlyRecurringFee"=>".014",
822
+ "recurringFee"=>"10.29",
823
+ "item"=>
824
+ {
825
+ "description"=>"100 GB (SAN)"
826
+ }
827
+ },
828
+ "template"=>
829
+ {
830
+ "id"=>nil,
831
+ "blockDevices"=>
832
+ [
833
+ {
834
+ "device"=>"3",
835
+ "diskImage"=>
836
+ {
837
+ "capacity"=>100
838
+ }
839
+ }
840
+ ],
841
+ "localDiskFlag"=>false
842
+ }
843
+ },
844
+ {
845
+ "itemPrice"=>
846
+ {
847
+ "hourlyRecurringFee"=>".015",
848
+ "recurringFee"=>"10.86",
849
+ "item"=>
850
+ {
851
+ "description"=>"125 GB (SAN)"
852
+ }
853
+ },
854
+ "template"=>
855
+ {
856
+ "id"=>nil,
857
+ "blockDevices"=>
858
+ [
859
+ {
860
+ "device"=>"3",
861
+ "diskImage"=>
862
+ {
863
+ "capacity"=>125
864
+ }
865
+ }
866
+ ],
867
+ "localDiskFlag"=>false
868
+ }
869
+ },
870
+ {
871
+ "itemPrice"=>
872
+ {
873
+ "hourlyRecurringFee"=>".016",
874
+ "recurringFee"=>"11.43",
875
+ "item"=>
876
+ {
877
+ "description"=>"150 GB (SAN)"
878
+ }
879
+ },
880
+ "template"=>
881
+ {
882
+ "id"=>nil,
883
+ "blockDevices"=>
884
+ [
885
+ {
886
+ "device"=>"3",
887
+ "diskImage"=>
888
+ {
889
+ "capacity"=>150
890
+ }
891
+ }
892
+ ],
893
+ "localDiskFlag"=>false
894
+ }
895
+ },
896
+ {
897
+ "itemPrice"=>
898
+ {
899
+ "hourlyRecurringFee"=>".017",
900
+ "recurringFee"=>"12",
901
+ "item"=>
902
+ {
903
+ "description"=>"175 GB (SAN)"
904
+ }
905
+ },
906
+ "template"=>
907
+ {
908
+ "id"=>nil,
909
+ "blockDevices"=>
910
+ [
911
+ {
912
+ "device"=>"3",
913
+ "diskImage"=>
914
+ {
915
+ "capacity"=>175
916
+ }
917
+ }
918
+ ],
919
+ "localDiskFlag"=>false
920
+ }
921
+ },
922
+ {
923
+ "itemPrice"=>
924
+ {
925
+ "hourlyRecurringFee"=>".018",
926
+ "recurringFee"=>"12.57",
927
+ "item"=>
928
+ {
929
+ "description"=>"200 GB (SAN)"
930
+ }
931
+ },
932
+ "template"=>
933
+ {
934
+ "id"=>nil,
935
+ "blockDevices"=>
936
+ [
937
+ {
938
+ "device"=>"3",
939
+ "diskImage"=>
940
+ {
941
+ "capacity"=>200
942
+ }
943
+ }
944
+ ],
945
+ "localDiskFlag"=>false
946
+ }
947
+ },
948
+ {
949
+ "itemPrice"=>
950
+ {
951
+ "hourlyRecurringFee"=>".02",
952
+ "recurringFee"=>"14.29",
953
+ "item"=>
954
+ {
955
+ "description"=>"250 GB (SAN)"
956
+ }
957
+ },
958
+ "template"=>
959
+ {
960
+ "id"=>nil,
961
+ "blockDevices"=>
962
+ [
963
+ {
964
+ "device"=>"3",
965
+ "diskImage"=>
966
+ {
967
+ "capacity"=>250
968
+ }
969
+ }
970
+ ],
971
+ "localDiskFlag"=>false
972
+ }
973
+ },
974
+ {
975
+ "itemPrice"=>
976
+ {
977
+ "hourlyRecurringFee"=>".025",
978
+ "recurringFee"=>"18.57",
979
+ "item"=>
980
+ {
981
+ "description"=>"300 GB (SAN)"
982
+ }
983
+ },
984
+ "template"=>
985
+ {
986
+ "id"=>nil,
987
+ "blockDevices"=>
988
+ [
989
+ {
990
+ "device"=>"3",
991
+ "diskImage"=>
992
+ {
993
+ "capacity"=>300
994
+ }
995
+ }
996
+ ],
997
+ "localDiskFlag"=>false
998
+ }
999
+ },
1000
+ {
1001
+ "itemPrice"=>
1002
+ {
1003
+ "hourlyRecurringFee"=>".031",
1004
+ "recurringFee"=>"22.86",
1005
+ "item"=>
1006
+ {
1007
+ "description"=>"350 GB (SAN)"
1008
+ }
1009
+ },
1010
+ "template"=>
1011
+ {
1012
+ "id"=>nil,
1013
+ "blockDevices"=>
1014
+ [
1015
+ {
1016
+ "device"=>"3",
1017
+ "diskImage"=>
1018
+ {
1019
+ "capacity"=>350
1020
+ }
1021
+ }
1022
+ ],
1023
+ "localDiskFlag"=>false
1024
+ }
1025
+ },
1026
+ {
1027
+ "itemPrice"=>
1028
+ {
1029
+ "hourlyRecurringFee"=>".035",
1030
+ "recurringFee"=>"25.71",
1031
+ "item"=>
1032
+ {
1033
+ "description"=>"400 GB (SAN)"
1034
+ }
1035
+ },
1036
+ "template"=>
1037
+ {
1038
+ "id"=>nil,
1039
+ "blockDevices"=>
1040
+ [
1041
+ {
1042
+ "device"=>"3",
1043
+ "diskImage"=>
1044
+ {
1045
+ "capacity"=>400
1046
+ }
1047
+ }
1048
+ ],
1049
+ "localDiskFlag"=>false
1050
+ }
1051
+ },
1052
+ {
1053
+ "itemPrice"=>
1054
+ {
1055
+ "hourlyRecurringFee"=>".039",
1056
+ "recurringFee"=>"28.57",
1057
+ "item"=>
1058
+ {
1059
+ "description"=>"500 GB (SAN)"
1060
+ }
1061
+ },
1062
+ "template"=>
1063
+ {
1064
+ "id"=>nil,
1065
+ "blockDevices"=>
1066
+ [
1067
+ {
1068
+ "device"=>"3",
1069
+ "diskImage"=>
1070
+ {
1071
+ "capacity"=>500
1072
+ }
1073
+ }
1074
+ ],
1075
+ "localDiskFlag"=>false
1076
+ }
1077
+ },
1078
+ {
1079
+ "itemPrice"=>
1080
+ {
1081
+ "hourlyRecurringFee"=>".059",
1082
+ "recurringFee"=>"42.86",
1083
+ "item"=>
1084
+ {
1085
+ "description"=>"750 GB (SAN)"
1086
+ }
1087
+ },
1088
+ "template"=>
1089
+ {
1090
+ "id"=>nil,
1091
+ "blockDevices"=>
1092
+ [
1093
+ {
1094
+ "device"=>"3",
1095
+ "diskImage"=>
1096
+ {
1097
+ "capacity"=>750
1098
+ }
1099
+ }
1100
+ ],
1101
+ "localDiskFlag"=>false
1102
+ }
1103
+ },
1104
+ {
1105
+ "itemPrice"=>
1106
+ {
1107
+ "hourlyRecurringFee"=>".078",
1108
+ "recurringFee"=>"57.14",
1109
+ "item"=>
1110
+ {
1111
+ "description"=>"1.00 TB (SAN)"
1112
+ }
1113
+ },
1114
+ "template"=>
1115
+ {
1116
+ "id"=>nil,
1117
+ "blockDevices"=>
1118
+ [
1119
+ {
1120
+ "device"=>"3",
1121
+ "diskImage"=>
1122
+ {
1123
+ "capacity"=>1000
1124
+ }
1125
+ }
1126
+ ],
1127
+ "localDiskFlag"=>false
1128
+ }
1129
+ },
1130
+ {
1131
+ "itemPrice"=>
1132
+ {
1133
+ "hourlyRecurringFee"=>".117",
1134
+ "recurringFee"=>"85.71",
1135
+ "item"=>
1136
+ {
1137
+ "description"=>"1.50 TB (SAN)"
1138
+ }
1139
+ },
1140
+ "template"=>
1141
+ {
1142
+ "id"=>nil,
1143
+ "blockDevices"=>
1144
+ [
1145
+ {
1146
+ "device"=>"3",
1147
+ "diskImage"=>
1148
+ {
1149
+ "capacity"=>1500
1150
+ }
1151
+ }
1152
+ ],
1153
+ "localDiskFlag"=>false
1154
+ }
1155
+ },
1156
+ {
1157
+ "itemPrice"=>
1158
+ {
1159
+ "hourlyRecurringFee"=>".157",
1160
+ "recurringFee"=>"114.29",
1161
+ "item"=>
1162
+ {
1163
+ "description"=>"2.00 TB (SAN)"
1164
+ }
1165
+ },
1166
+ "template"=>
1167
+ {
1168
+ "id"=>nil,
1169
+ "blockDevices"=>
1170
+ [
1171
+ {
1172
+ "device"=>"3",
1173
+ "diskImage"=>
1174
+ {
1175
+ "capacity"=>2000
1176
+ }
1177
+ }
1178
+ ],
1179
+ "localDiskFlag"=>false
1180
+ }
1181
+ },
1182
+ {
1183
+ "itemPrice"=>
1184
+ {
1185
+ "hourlyRecurringFee"=>".006",
1186
+ "recurringFee"=>"4.57",
1187
+ "item"=>
1188
+ {
1189
+ "description"=>"10 GB (SAN)"
1190
+ }
1191
+ },
1192
+ "template"=>
1193
+ {
1194
+ "id"=>nil,
1195
+ "blockDevices"=>
1196
+ [
1197
+ {
1198
+ "device"=>"4",
1199
+ "diskImage"=>
1200
+ {
1201
+ "capacity"=>10
1202
+ }
1203
+ }
1204
+ ],
1205
+ "localDiskFlag"=>false
1206
+ }
1207
+ },
1208
+ {
1209
+ "itemPrice"=>
1210
+ {
1211
+ "hourlyRecurringFee"=>".008",
1212
+ "recurringFee"=>"5.71",
1213
+ "item"=>
1214
+ {
1215
+ "description"=>"20 GB (SAN)"
1216
+ }
1217
+ },
1218
+ "template"=>
1219
+ {
1220
+ "id"=>nil,
1221
+ "blockDevices"=>
1222
+ [
1223
+ {
1224
+ "device"=>"4",
1225
+ "diskImage"=>
1226
+ {
1227
+ "capacity"=>20
1228
+ }
1229
+ }
1230
+ ],
1231
+ "localDiskFlag"=>false
1232
+ }
1233
+ },
1234
+ {
1235
+ "itemPrice"=>
1236
+ {
1237
+ "hourlyRecurringFee"=>".009",
1238
+ "recurringFee"=>"6.5",
1239
+ "item"=>
1240
+ {
1241
+ "description"=>"25 GB (SAN)"
1242
+ }
1243
+ },
1244
+ "template"=>
1245
+ {
1246
+ "id"=>nil,
1247
+ "blockDevices"=>
1248
+ [
1249
+ {
1250
+ "device"=>"4",
1251
+ "diskImage"=>
1252
+ {
1253
+ "capacity"=>25
1254
+ }
1255
+ }
1256
+ ],
1257
+ "localDiskFlag"=>false
1258
+ }
1259
+ },
1260
+ {
1261
+ "itemPrice"=>
1262
+ {
1263
+ "hourlyRecurringFee"=>".01",
1264
+ "recurringFee"=>"6.86",
1265
+ "item"=>
1266
+ {
1267
+ "description"=>"30 GB (SAN)"
1268
+ }
1269
+ },
1270
+ "template"=>
1271
+ {
1272
+ "id"=>nil,
1273
+ "blockDevices"=>
1274
+ [
1275
+ {
1276
+ "device"=>"4",
1277
+ "diskImage"=>
1278
+ {
1279
+ "capacity"=>30
1280
+ }
1281
+ }
1282
+ ],
1283
+ "localDiskFlag"=>false
1284
+ }
1285
+ },
1286
+ {
1287
+ "itemPrice"=>
1288
+ {
1289
+ "hourlyRecurringFee"=>".011",
1290
+ "recurringFee"=>"8",
1291
+ "item"=>
1292
+ {
1293
+ "description"=>"40 GB (SAN)"
1294
+ }
1295
+ },
1296
+ "template"=>
1297
+ {
1298
+ "id"=>nil,
1299
+ "blockDevices"=>
1300
+ [
1301
+ {
1302
+ "device"=>"4",
1303
+ "diskImage"=>
1304
+ {
1305
+ "capacity"=>40
1306
+ }
1307
+ }
1308
+ ],
1309
+ "localDiskFlag"=>false
1310
+ }
1311
+ },
1312
+ {
1313
+ "itemPrice"=>
1314
+ {
1315
+ "hourlyRecurringFee"=>".012",
1316
+ "recurringFee"=>"9.14",
1317
+ "item"=>
1318
+ {
1319
+ "description"=>"50 GB (SAN)"
1320
+ }
1321
+ },
1322
+ "template"=>
1323
+ {
1324
+ "id"=>nil,
1325
+ "blockDevices"=>
1326
+ [
1327
+ {
1328
+ "device"=>"4",
1329
+ "diskImage"=>
1330
+ {
1331
+ "capacity"=>50
1332
+ }
1333
+ }
1334
+ ],
1335
+ "localDiskFlag"=>false
1336
+ }
1337
+ },
1338
+ {
1339
+ "itemPrice"=>
1340
+ {
1341
+ "hourlyRecurringFee"=>".013",
1342
+ "recurringFee"=>"9.71",
1343
+ "item"=>
1344
+ {
1345
+ "description"=>"75 GB (SAN)"
1346
+ }
1347
+ },
1348
+ "template"=>
1349
+ {
1350
+ "id"=>nil,
1351
+ "blockDevices"=>
1352
+ [
1353
+ {
1354
+ "device"=>"4",
1355
+ "diskImage"=>
1356
+ {
1357
+ "capacity"=>75
1358
+ }
1359
+ }
1360
+ ],
1361
+ "localDiskFlag"=>false
1362
+ }
1363
+ },
1364
+ {
1365
+ "itemPrice"=>
1366
+ {
1367
+ "hourlyRecurringFee"=>".014",
1368
+ "recurringFee"=>"10.29",
1369
+ "item"=>
1370
+ {
1371
+ "description"=>"100 GB (SAN)"
1372
+ }
1373
+ },
1374
+ "template"=>
1375
+ {
1376
+ "id"=>nil,
1377
+ "blockDevices"=>
1378
+ [
1379
+ {
1380
+ "device"=>"4",
1381
+ "diskImage"=>
1382
+ {
1383
+ "capacity"=>100
1384
+ }
1385
+ }
1386
+ ],
1387
+ "localDiskFlag"=>false
1388
+ }
1389
+ },
1390
+ {
1391
+ "itemPrice"=>
1392
+ {
1393
+ "hourlyRecurringFee"=>".015",
1394
+ "recurringFee"=>"10.86",
1395
+ "item"=>
1396
+ {
1397
+ "description"=>"125 GB (SAN)"
1398
+ }
1399
+ },
1400
+ "template"=>
1401
+ {
1402
+ "id"=>nil,
1403
+ "blockDevices"=>
1404
+ [
1405
+ {
1406
+ "device"=>"4",
1407
+ "diskImage"=>
1408
+ {
1409
+ "capacity"=>125
1410
+ }
1411
+ }
1412
+ ],
1413
+ "localDiskFlag"=>false
1414
+ }
1415
+ },
1416
+ {
1417
+ "itemPrice"=>
1418
+ {
1419
+ "hourlyRecurringFee"=>".016",
1420
+ "recurringFee"=>"11.43",
1421
+ "item"=>
1422
+ {
1423
+ "description"=>"150 GB (SAN)"
1424
+ }
1425
+ },
1426
+ "template"=>
1427
+ {
1428
+ "id"=>nil,
1429
+ "blockDevices"=>
1430
+ [
1431
+ {
1432
+ "device"=>"4",
1433
+ "diskImage"=>
1434
+ {
1435
+ "capacity"=>150
1436
+ }
1437
+ }
1438
+ ],
1439
+ "localDiskFlag"=>false
1440
+ }
1441
+ },
1442
+ {
1443
+ "itemPrice"=>
1444
+ {
1445
+ "hourlyRecurringFee"=>".017",
1446
+ "recurringFee"=>"12",
1447
+ "item"=>
1448
+ {
1449
+ "description"=>"175 GB (SAN)"
1450
+ }
1451
+ },
1452
+ "template"=>
1453
+ {
1454
+ "id"=>nil,
1455
+ "blockDevices"=>
1456
+ [
1457
+ {
1458
+ "device"=>"4",
1459
+ "diskImage"=>
1460
+ {
1461
+ "capacity"=>175
1462
+ }
1463
+ }
1464
+ ],
1465
+ "localDiskFlag"=>false
1466
+ }
1467
+ },
1468
+ {
1469
+ "itemPrice"=>
1470
+ {
1471
+ "hourlyRecurringFee"=>".018",
1472
+ "recurringFee"=>"12.57",
1473
+ "item"=>
1474
+ {
1475
+ "description"=>"200 GB (SAN)"
1476
+ }
1477
+ },
1478
+ "template"=>
1479
+ {
1480
+ "id"=>nil,
1481
+ "blockDevices"=>
1482
+ [
1483
+ {
1484
+ "device"=>"4",
1485
+ "diskImage"=>
1486
+ {
1487
+ "capacity"=>200
1488
+ }
1489
+ }
1490
+ ],
1491
+ "localDiskFlag"=>false
1492
+ }
1493
+ },
1494
+ {
1495
+ "itemPrice"=>
1496
+ {
1497
+ "hourlyRecurringFee"=>".02",
1498
+ "recurringFee"=>"14.29",
1499
+ "item"=>
1500
+ {
1501
+ "description"=>"250 GB (SAN)"
1502
+ }
1503
+ },
1504
+ "template"=>
1505
+ {
1506
+ "id"=>nil,
1507
+ "blockDevices"=>
1508
+ [
1509
+ {
1510
+ "device"=>"4",
1511
+ "diskImage"=>
1512
+ {
1513
+ "capacity"=>250
1514
+ }
1515
+ }
1516
+ ],
1517
+ "localDiskFlag"=>false
1518
+ }
1519
+ },
1520
+ {
1521
+ "itemPrice"=>
1522
+ {
1523
+ "hourlyRecurringFee"=>".025",
1524
+ "recurringFee"=>"18.57",
1525
+ "item"=>
1526
+ {
1527
+ "description"=>"300 GB (SAN)"
1528
+ }
1529
+ },
1530
+ "template"=>
1531
+ {
1532
+ "id"=>nil,
1533
+ "blockDevices"=>
1534
+ [
1535
+ {
1536
+ "device"=>"4",
1537
+ "diskImage"=>
1538
+ {
1539
+ "capacity"=>300
1540
+ }
1541
+ }
1542
+ ],
1543
+ "localDiskFlag"=>false
1544
+ }
1545
+ },
1546
+ {
1547
+ "itemPrice"=>
1548
+ {
1549
+ "hourlyRecurringFee"=>".031",
1550
+ "recurringFee"=>"22.86",
1551
+ "item"=>
1552
+ {
1553
+ "description"=>"350 GB (SAN)"
1554
+ }
1555
+ },
1556
+ "template"=>
1557
+ {
1558
+ "id"=>nil,
1559
+ "blockDevices"=>
1560
+ [
1561
+ {
1562
+ "device"=>"4",
1563
+ "diskImage"=>
1564
+ {
1565
+ "capacity"=>350
1566
+ }
1567
+ }
1568
+ ],
1569
+ "localDiskFlag"=>false
1570
+ }
1571
+ },
1572
+ {
1573
+ "itemPrice"=>
1574
+ {
1575
+ "hourlyRecurringFee"=>".035",
1576
+ "recurringFee"=>"25.71",
1577
+ "item"=>
1578
+ {
1579
+ "description"=>"400 GB (SAN)"
1580
+ }
1581
+ },
1582
+ "template"=>
1583
+ {
1584
+ "id"=>nil,
1585
+ "blockDevices"=>
1586
+ [
1587
+ {
1588
+ "device"=>"4",
1589
+ "diskImage"=>
1590
+ {
1591
+ "capacity"=>400
1592
+ }
1593
+ }
1594
+ ],
1595
+ "localDiskFlag"=>false
1596
+ }
1597
+ },
1598
+ {
1599
+ "itemPrice"=>
1600
+ {
1601
+ "hourlyRecurringFee"=>".039",
1602
+ "recurringFee"=>"28.57",
1603
+ "item"=>
1604
+ {
1605
+ "description"=>"500 GB (SAN)"
1606
+ }
1607
+ },
1608
+ "template"=>
1609
+ {
1610
+ "id"=>nil,
1611
+ "blockDevices"=>
1612
+ [
1613
+ {
1614
+ "device"=>"4",
1615
+ "diskImage"=>
1616
+ {
1617
+ "capacity"=>500
1618
+ }
1619
+ }
1620
+ ],
1621
+ "localDiskFlag"=>false
1622
+ }
1623
+ },
1624
+ {
1625
+ "itemPrice"=>
1626
+ {
1627
+ "hourlyRecurringFee"=>".059",
1628
+ "recurringFee"=>"42.86",
1629
+ "item"=>
1630
+ {
1631
+ "description"=>"750 GB (SAN)"
1632
+ }
1633
+ },
1634
+ "template"=>
1635
+ {
1636
+ "id"=>nil,
1637
+ "blockDevices"=>
1638
+ [
1639
+ {
1640
+ "device"=>"4",
1641
+ "diskImage"=>
1642
+ {
1643
+ "capacity"=>750
1644
+ }
1645
+ }
1646
+ ],
1647
+ "localDiskFlag"=>false
1648
+ }
1649
+ },
1650
+ {
1651
+ "itemPrice"=>
1652
+ {
1653
+ "hourlyRecurringFee"=>".078",
1654
+ "recurringFee"=>"57.14",
1655
+ "item"=>
1656
+ {
1657
+ "description"=>"1.00 TB (SAN)"
1658
+ }
1659
+ },
1660
+ "template"=>
1661
+ {
1662
+ "id"=>nil,
1663
+ "blockDevices"=>
1664
+ [
1665
+ {
1666
+ "device"=>"4",
1667
+ "diskImage"=>
1668
+ {
1669
+ "capacity"=>1000
1670
+ }
1671
+ }
1672
+ ],
1673
+ "localDiskFlag"=>false
1674
+ }
1675
+ },
1676
+ {
1677
+ "itemPrice"=>
1678
+ {
1679
+ "hourlyRecurringFee"=>".117",
1680
+ "recurringFee"=>"85.71",
1681
+ "item"=>
1682
+ {
1683
+ "description"=>"1.50 TB (SAN)"
1684
+ }
1685
+ },
1686
+ "template"=>
1687
+ {
1688
+ "id"=>nil,
1689
+ "blockDevices"=>
1690
+ [
1691
+ {
1692
+ "device"=>"4",
1693
+ "diskImage"=>
1694
+ {
1695
+ "capacity"=>1500
1696
+ }
1697
+ }
1698
+ ],
1699
+ "localDiskFlag"=>false
1700
+ }
1701
+ },
1702
+ {
1703
+ "itemPrice"=>
1704
+ {
1705
+ "hourlyRecurringFee"=>".157",
1706
+ "recurringFee"=>"114.29",
1707
+ "item"=>
1708
+ {
1709
+ "description"=>"2.00 TB (SAN)"
1710
+ }
1711
+ },
1712
+ "template"=>
1713
+ {
1714
+ "id"=>nil,
1715
+ "blockDevices"=>
1716
+ [
1717
+ {
1718
+ "device"=>"4",
1719
+ "diskImage"=>
1720
+ {
1721
+ "capacity"=>2000
1722
+ }
1723
+ }
1724
+ ],
1725
+ "localDiskFlag"=>false
1726
+ }
1727
+ },
1728
+ {
1729
+ "itemPrice"=>
1730
+ {
1731
+ "hourlyRecurringFee"=>".006",
1732
+ "recurringFee"=>"4.57",
1733
+ "item"=>
1734
+ {
1735
+ "description"=>"10 GB (SAN)"
1736
+ }
1737
+ },
1738
+ "template"=>
1739
+ {
1740
+ "id"=>nil,
1741
+ "blockDevices"=>
1742
+ [
1743
+ {
1744
+ "device"=>"5",
1745
+ "diskImage"=>
1746
+ {
1747
+ "capacity"=>10
1748
+ }
1749
+ }
1750
+ ],
1751
+ "localDiskFlag"=>false
1752
+ }
1753
+ },
1754
+ {
1755
+ "itemPrice"=>
1756
+ {
1757
+ "hourlyRecurringFee"=>".008",
1758
+ "recurringFee"=>"5.71",
1759
+ "item"=>
1760
+ {
1761
+ "description"=>"20 GB (SAN)"
1762
+ }
1763
+ },
1764
+ "template"=>
1765
+ {
1766
+ "id"=>nil,
1767
+ "blockDevices"=>
1768
+ [
1769
+ {
1770
+ "device"=>"5",
1771
+ "diskImage"=>
1772
+ {
1773
+ "capacity"=>20
1774
+ }
1775
+ }
1776
+ ],
1777
+ "localDiskFlag"=>false
1778
+ }
1779
+ },
1780
+ {
1781
+ "itemPrice"=>
1782
+ {
1783
+ "hourlyRecurringFee"=>".009",
1784
+ "recurringFee"=>"6.5",
1785
+ "item"=>
1786
+ {
1787
+ "description"=>"25 GB (SAN)"
1788
+ }
1789
+ },
1790
+ "template"=>
1791
+ {
1792
+ "id"=>nil,
1793
+ "blockDevices"=>
1794
+ [
1795
+ {
1796
+ "device"=>"5",
1797
+ "diskImage"=>
1798
+ {
1799
+ "capacity"=>25
1800
+ }
1801
+ }
1802
+ ],
1803
+ "localDiskFlag"=>false
1804
+ }
1805
+ },
1806
+ {
1807
+ "itemPrice"=>
1808
+ {
1809
+ "hourlyRecurringFee"=>".01",
1810
+ "recurringFee"=>"6.86",
1811
+ "item"=>
1812
+ {
1813
+ "description"=>"30 GB (SAN)"
1814
+ }
1815
+ },
1816
+ "template"=>
1817
+ {
1818
+ "id"=>nil,
1819
+ "blockDevices"=>
1820
+ [
1821
+ {
1822
+ "device"=>"5",
1823
+ "diskImage"=>
1824
+ {
1825
+ "capacity"=>30
1826
+ }
1827
+ }
1828
+ ],
1829
+ "localDiskFlag"=>false
1830
+ }
1831
+ },
1832
+ {
1833
+ "itemPrice"=>
1834
+ {
1835
+ "hourlyRecurringFee"=>".011",
1836
+ "recurringFee"=>"8",
1837
+ "item"=>
1838
+ {
1839
+ "description"=>"40 GB (SAN)"
1840
+ }
1841
+ },
1842
+ "template"=>
1843
+ {
1844
+ "id"=>nil,
1845
+ "blockDevices"=>
1846
+ [
1847
+ {
1848
+ "device"=>"5",
1849
+ "diskImage"=>
1850
+ {
1851
+ "capacity"=>40
1852
+ }
1853
+ }
1854
+ ],
1855
+ "localDiskFlag"=>false
1856
+ }
1857
+ },
1858
+ {
1859
+ "itemPrice"=>
1860
+ {
1861
+ "hourlyRecurringFee"=>".012",
1862
+ "recurringFee"=>"9.14",
1863
+ "item"=>
1864
+ {
1865
+ "description"=>"50 GB (SAN)"
1866
+ }
1867
+ },
1868
+ "template"=>
1869
+ {
1870
+ "id"=>nil,
1871
+ "blockDevices"=>
1872
+ [
1873
+ {
1874
+ "device"=>"5",
1875
+ "diskImage"=>
1876
+ {
1877
+ "capacity"=>50
1878
+ }
1879
+ }
1880
+ ],
1881
+ "localDiskFlag"=>false
1882
+ }
1883
+ },
1884
+ {
1885
+ "itemPrice"=>
1886
+ {
1887
+ "hourlyRecurringFee"=>".013",
1888
+ "recurringFee"=>"9.71",
1889
+ "item"=>
1890
+ {
1891
+ "description"=>"75 GB (SAN)"
1892
+ }
1893
+ },
1894
+ "template"=>
1895
+ {
1896
+ "id"=>nil,
1897
+ "blockDevices"=>
1898
+ [
1899
+ {
1900
+ "device"=>"5",
1901
+ "diskImage"=>
1902
+ {
1903
+ "capacity"=>75
1904
+ }
1905
+ }
1906
+ ],
1907
+ "localDiskFlag"=>false
1908
+ }
1909
+ },
1910
+ {
1911
+ "itemPrice"=>
1912
+ {
1913
+ "hourlyRecurringFee"=>".014",
1914
+ "recurringFee"=>"10.29",
1915
+ "item"=>
1916
+ {
1917
+ "description"=>"100 GB (SAN)"
1918
+ }
1919
+ },
1920
+ "template"=>
1921
+ {
1922
+ "id"=>nil,
1923
+ "blockDevices"=>
1924
+ [
1925
+ {
1926
+ "device"=>"5",
1927
+ "diskImage"=>
1928
+ {
1929
+ "capacity"=>100
1930
+ }
1931
+ }
1932
+ ],
1933
+ "localDiskFlag"=>false
1934
+ }
1935
+ },
1936
+ {
1937
+ "itemPrice"=>
1938
+ {
1939
+ "hourlyRecurringFee"=>".015",
1940
+ "recurringFee"=>"10.86",
1941
+ "item"=>
1942
+ {
1943
+ "description"=>"125 GB (SAN)"
1944
+ }
1945
+ },
1946
+ "template"=>
1947
+ {
1948
+ "id"=>nil,
1949
+ "blockDevices"=>
1950
+ [
1951
+ {
1952
+ "device"=>"5",
1953
+ "diskImage"=>
1954
+ {
1955
+ "capacity"=>125
1956
+ }
1957
+ }
1958
+ ],
1959
+ "localDiskFlag"=>false
1960
+ }
1961
+ },
1962
+ {
1963
+ "itemPrice"=>
1964
+ {
1965
+ "hourlyRecurringFee"=>".016",
1966
+ "recurringFee"=>"11.43",
1967
+ "item"=>
1968
+ {
1969
+ "description"=>"150 GB (SAN)"
1970
+ }
1971
+ },
1972
+ "template"=>
1973
+ {
1974
+ "id"=>nil,
1975
+ "blockDevices"=>
1976
+ [
1977
+ {
1978
+ "device"=>"5",
1979
+ "diskImage"=>
1980
+ {
1981
+ "capacity"=>150
1982
+ }
1983
+ }
1984
+ ],
1985
+ "localDiskFlag"=>false
1986
+ }
1987
+ },
1988
+ {
1989
+ "itemPrice"=>
1990
+ {
1991
+ "hourlyRecurringFee"=>".017",
1992
+ "recurringFee"=>"12",
1993
+ "item"=>
1994
+ {
1995
+ "description"=>"175 GB (SAN)"
1996
+ }
1997
+ },
1998
+ "template"=>
1999
+ {
2000
+ "id"=>nil,
2001
+ "blockDevices"=>
2002
+ [
2003
+ {
2004
+ "device"=>"5",
2005
+ "diskImage"=>
2006
+ {
2007
+ "capacity"=>175
2008
+ }
2009
+ }
2010
+ ],
2011
+ "localDiskFlag"=>false
2012
+ }
2013
+ },
2014
+ {
2015
+ "itemPrice"=>
2016
+ {
2017
+ "hourlyRecurringFee"=>".018",
2018
+ "recurringFee"=>"12.57",
2019
+ "item"=>
2020
+ {
2021
+ "description"=>"200 GB (SAN)"
2022
+ }
2023
+ },
2024
+ "template"=>
2025
+ {
2026
+ "id"=>nil,
2027
+ "blockDevices"=>
2028
+ [
2029
+ {
2030
+ "device"=>"5",
2031
+ "diskImage"=>
2032
+ {
2033
+ "capacity"=>200
2034
+ }
2035
+ }
2036
+ ],
2037
+ "localDiskFlag"=>false
2038
+ }
2039
+ },
2040
+ {
2041
+ "itemPrice"=>
2042
+ {
2043
+ "hourlyRecurringFee"=>".02",
2044
+ "recurringFee"=>"14.29",
2045
+ "item"=>
2046
+ {
2047
+ "description"=>"250 GB (SAN)"
2048
+ }
2049
+ },
2050
+ "template"=>
2051
+ {
2052
+ "id"=>nil,
2053
+ "blockDevices"=>
2054
+ [
2055
+ {
2056
+ "device"=>"5",
2057
+ "diskImage"=>
2058
+ {
2059
+ "capacity"=>250
2060
+ }
2061
+ }
2062
+ ],
2063
+ "localDiskFlag"=>false
2064
+ }
2065
+ },
2066
+ {
2067
+ "itemPrice"=>
2068
+ {
2069
+ "hourlyRecurringFee"=>".025",
2070
+ "recurringFee"=>"18.57",
2071
+ "item"=>
2072
+ {
2073
+ "description"=>"300 GB (SAN)"
2074
+ }
2075
+ },
2076
+ "template"=>
2077
+ {
2078
+ "id"=>nil,
2079
+ "blockDevices"=>
2080
+ [
2081
+ {
2082
+ "device"=>"5",
2083
+ "diskImage"=>
2084
+ {
2085
+ "capacity"=>300
2086
+ }
2087
+ }
2088
+ ],
2089
+ "localDiskFlag"=>false
2090
+ }
2091
+ },
2092
+ {
2093
+ "itemPrice"=>
2094
+ {
2095
+ "hourlyRecurringFee"=>".031",
2096
+ "recurringFee"=>"22.86",
2097
+ "item"=>
2098
+ {
2099
+ "description"=>"350 GB (SAN)"
2100
+ }
2101
+ },
2102
+ "template"=>
2103
+ {
2104
+ "id"=>nil,
2105
+ "blockDevices"=>
2106
+ [
2107
+ {
2108
+ "device"=>"5",
2109
+ "diskImage"=>
2110
+ {
2111
+ "capacity"=>350
2112
+ }
2113
+ }
2114
+ ],
2115
+ "localDiskFlag"=>false
2116
+ }
2117
+ },
2118
+ {
2119
+ "itemPrice"=>
2120
+ {
2121
+ "hourlyRecurringFee"=>".035",
2122
+ "recurringFee"=>"25.71",
2123
+ "item"=>
2124
+ {
2125
+ "description"=>"400 GB (SAN)"
2126
+ }
2127
+ },
2128
+ "template"=>
2129
+ {
2130
+ "id"=>nil,
2131
+ "blockDevices"=>
2132
+ [
2133
+ {
2134
+ "device"=>"5",
2135
+ "diskImage"=>
2136
+ {
2137
+ "capacity"=>400
2138
+ }
2139
+ }
2140
+ ],
2141
+ "localDiskFlag"=>false
2142
+ }
2143
+ },
2144
+ {
2145
+ "itemPrice"=>
2146
+ {
2147
+ "hourlyRecurringFee"=>".039",
2148
+ "recurringFee"=>"28.57",
2149
+ "item"=>
2150
+ {
2151
+ "description"=>"500 GB (SAN)"
2152
+ }
2153
+ },
2154
+ "template"=>
2155
+ {
2156
+ "id"=>nil,
2157
+ "blockDevices"=>
2158
+ [
2159
+ {
2160
+ "device"=>"5",
2161
+ "diskImage"=>
2162
+ {
2163
+ "capacity"=>500
2164
+ }
2165
+ }
2166
+ ],
2167
+ "localDiskFlag"=>false
2168
+ }
2169
+ },
2170
+ {
2171
+ "itemPrice"=>
2172
+ {
2173
+ "hourlyRecurringFee"=>".059",
2174
+ "recurringFee"=>"42.86",
2175
+ "item"=>
2176
+ {
2177
+ "description"=>"750 GB (SAN)"
2178
+ }
2179
+ },
2180
+ "template"=>
2181
+ {
2182
+ "id"=>nil,
2183
+ "blockDevices"=>
2184
+ [
2185
+ {
2186
+ "device"=>"5",
2187
+ "diskImage"=>
2188
+ {
2189
+ "capacity"=>750
2190
+ }
2191
+ }
2192
+ ],
2193
+ "localDiskFlag"=>false
2194
+ }
2195
+ },
2196
+ {
2197
+ "itemPrice"=>
2198
+ {
2199
+ "hourlyRecurringFee"=>".078",
2200
+ "recurringFee"=>"57.14",
2201
+ "item"=>
2202
+ {
2203
+ "description"=>"1.00 TB (SAN)"
2204
+ }
2205
+ },
2206
+ "template"=>
2207
+ {
2208
+ "id"=>nil,
2209
+ "blockDevices"=>
2210
+ [
2211
+ {
2212
+ "device"=>"5",
2213
+ "diskImage"=>
2214
+ {
2215
+ "capacity"=>1000
2216
+ }
2217
+ }
2218
+ ],
2219
+ "localDiskFlag"=>false
2220
+ }
2221
+ },
2222
+ {
2223
+ "itemPrice"=>
2224
+ {
2225
+ "hourlyRecurringFee"=>".117",
2226
+ "recurringFee"=>"85.71",
2227
+ "item"=>
2228
+ {
2229
+ "description"=>"1.50 TB (SAN)"
2230
+ }
2231
+ },
2232
+ "template"=>
2233
+ {
2234
+ "id"=>nil,
2235
+ "blockDevices"=>
2236
+ [
2237
+ {
2238
+ "device"=>"5",
2239
+ "diskImage"=>
2240
+ {
2241
+ "capacity"=>1500
2242
+ }
2243
+ }
2244
+ ],
2245
+ "localDiskFlag"=>false
2246
+ }
2247
+ },
2248
+ {
2249
+ "itemPrice"=>
2250
+ {
2251
+ "hourlyRecurringFee"=>".157",
2252
+ "recurringFee"=>"114.29",
2253
+ "item"=>
2254
+ {
2255
+ "description"=>"2.00 TB (SAN)"
2256
+ }
2257
+ },
2258
+ "template"=>
2259
+ {
2260
+ "id"=>nil,
2261
+ "blockDevices"=>
2262
+ [
2263
+ {
2264
+ "device"=>"5",
2265
+ "diskImage"=>
2266
+ {
2267
+ "capacity"=>2000
2268
+ }
2269
+ }
2270
+ ],
2271
+ "localDiskFlag"=>false
2272
+ }
2273
+ },
2274
+ {
2275
+ "itemPrice"=>
2276
+ {
2277
+ "hourlyRecurringFee"=>"0",
2278
+ "recurringFee"=>"0",
2279
+ "item"=>
2280
+ {
2281
+ "description"=>"25 GB (LOCAL)"
2282
+ }
2283
+ },
2284
+ "template"=>
2285
+ {
2286
+ "id"=>nil,
2287
+ "blockDevices"=>
2288
+ [
2289
+ {
2290
+ "device"=>"0",
2291
+ "diskImage"=>
2292
+ {
2293
+ "capacity"=>25
2294
+ }
2295
+ }
2296
+ ],
2297
+ "localDiskFlag"=>true
2298
+ }
2299
+ },
2300
+ {
2301
+ "itemPrice"=>
2302
+ {
2303
+ "hourlyRecurringFee"=>".005",
2304
+ "recurringFee"=>"4",
2305
+ "item"=>
2306
+ {
2307
+ "description"=>"100 GB (LOCAL)"
2308
+ }
2309
+ },
2310
+ "template"=>
2311
+ {
2312
+ "id"=>nil,
2313
+ "blockDevices"=>
2314
+ [
2315
+ {
2316
+ "device"=>"0",
2317
+ "diskImage"=>
2318
+ {
2319
+ "capacity"=>100
2320
+ }
2321
+ }
2322
+ ],
2323
+ "localDiskFlag"=>true
2324
+ }
2325
+ },
2326
+ {
2327
+ "itemPrice"=>
2328
+ {
2329
+ "hourlyRecurringFee"=>".002",
2330
+ "recurringFee"=>"1",
2331
+ "item"=>
2332
+ {
2333
+ "description"=>"25 GB (LOCAL)"
2334
+ }
2335
+ },
2336
+ "template"=>
2337
+ {
2338
+ "id"=>nil,
2339
+ "blockDevices"=>
2340
+ [
2341
+ {
2342
+ "device"=>"2",
2343
+ "diskImage"=>
2344
+ {
2345
+ "capacity"=>25
2346
+ }
2347
+ }
2348
+ ],
2349
+ "localDiskFlag"=>true
2350
+ }
2351
+ },
2352
+ {
2353
+ "itemPrice"=>
2354
+ {
2355
+ "hourlyRecurringFee"=>".005",
2356
+ "recurringFee"=>"4",
2357
+ "item"=>
2358
+ {
2359
+ "description"=>"100 GB (LOCAL)"
2360
+ }
2361
+ },
2362
+ "template"=>
2363
+ {
2364
+ "id"=>nil,
2365
+ "blockDevices"=>
2366
+ [
2367
+ {
2368
+ "device"=>"2",
2369
+ "diskImage"=>
2370
+ {
2371
+ "capacity"=>100
2372
+ }
2373
+ }
2374
+ ],
2375
+ "localDiskFlag"=>true
2376
+ }
2377
+ },
2378
+ {
2379
+ "itemPrice"=>
2380
+ {
2381
+ "hourlyRecurringFee"=>".008",
2382
+ "recurringFee"=>"6",
2383
+ "item"=>
2384
+ {
2385
+ "description"=>"150 GB (LOCAL)"
2386
+ }
2387
+ },
2388
+ "template"=>
2389
+ {
2390
+ "id"=>nil,
2391
+ "blockDevices"=>
2392
+ [
2393
+ {
2394
+ "device"=>"2",
2395
+ "diskImage"=>
2396
+ {
2397
+ "capacity"=>150
2398
+ }
2399
+ }
2400
+ ],
2401
+ "localDiskFlag"=>true
2402
+ }
2403
+ },
2404
+ {
2405
+ "itemPrice"=>
2406
+ {
2407
+ "hourlyRecurringFee"=>".011",
2408
+ "recurringFee"=>"8",
2409
+ "item"=>
2410
+ {
2411
+ "description"=>"200 GB (LOCAL)"
2412
+ }
2413
+ },
2414
+ "template"=>
2415
+ {
2416
+ "id"=>nil,
2417
+ "blockDevices"=>
2418
+ [
2419
+ {
2420
+ "device"=>"2",
2421
+ "diskImage"=>
2422
+ {
2423
+ "capacity"=>200
2424
+ }
2425
+ }
2426
+ ],
2427
+ "localDiskFlag"=>true
2428
+ }
2429
+ },
2430
+ {
2431
+ "itemPrice"=>
2432
+ {
2433
+ "hourlyRecurringFee"=>".016",
2434
+ "recurringFee"=>"12",
2435
+ "item"=>
2436
+ {
2437
+ "description"=>"300 GB (LOCAL)"
2438
+ }
2439
+ },
2440
+ "template"=>
2441
+ {
2442
+ "id"=>nil,
2443
+ "blockDevices"=>
2444
+ [
2445
+ {
2446
+ "device"=>"2",
2447
+ "diskImage"=>
2448
+ {
2449
+ "capacity"=>300
2450
+ }
2451
+ }
2452
+ ],
2453
+ "localDiskFlag"=>true
2454
+ }
2455
+ }
2456
+ ],
2457
+ "datacenters"=>
2458
+ [
2459
+ {
2460
+ "template"=>
2461
+ {
2462
+ "datacenter"=>
2463
+ {
2464
+ "name"=>"wdc01"
2465
+ }
2466
+ }
2467
+ },
2468
+ {
2469
+ "template"=>
2470
+ {
2471
+ "datacenter"=>
2472
+ {
2473
+ "name"=>"sjc01"
2474
+ }
2475
+ }
2476
+ },
2477
+ {
2478
+ "template"=>
2479
+ {
2480
+ "datacenter"=>
2481
+ {
2482
+ "name"=>"sea01"
2483
+ }
2484
+ }
2485
+ },
2486
+ {
2487
+ "template"=>
2488
+ {
2489
+ "datacenter"=>
2490
+ {
2491
+ "name"=>"dal01"
2492
+ }
2493
+ }
2494
+ },
2495
+ {
2496
+ "template"=>
2497
+ {
2498
+ "datacenter"=>
2499
+ {
2500
+ "name"=>"dal05"
2501
+ }
2502
+ }
2503
+ },
2504
+ {
2505
+ "template"=>
2506
+ {
2507
+ "datacenter"=>
2508
+ {
2509
+ "name"=>"dal06"
2510
+ }
2511
+ }
2512
+ },
2513
+ {
2514
+ "template"=>
2515
+ {
2516
+ "datacenter"=>
2517
+ {
2518
+ "name"=>"dal09"
2519
+ }
2520
+ }
2521
+ },
2522
+ {
2523
+ "template"=>
2524
+ {
2525
+ "datacenter"=>
2526
+ {
2527
+ "name"=>"hou02"
2528
+ }
2529
+ }
2530
+ },
2531
+ {
2532
+ "template"=>
2533
+ {
2534
+ "datacenter"=>
2535
+ {
2536
+ "name"=>"sng01"
2537
+ }
2538
+ }
2539
+ },
2540
+ {
2541
+ "template"=>
2542
+ {
2543
+ "datacenter"=>
2544
+ {
2545
+ "name"=>"lon02"
2546
+ }
2547
+ }
2548
+ },
2549
+ {
2550
+ "template"=>
2551
+ {
2552
+ "datacenter"=>
2553
+ {
2554
+ "name"=>"ams01"
2555
+ }
2556
+ }
2557
+ },
2558
+ {
2559
+ "template"=>
2560
+ {
2561
+ "datacenter"=>
2562
+ {
2563
+ "name"=>"hkg02"
2564
+ }
2565
+ }
2566
+ },
2567
+ {
2568
+ "template"=>
2569
+ {
2570
+ "datacenter"=>
2571
+ {
2572
+ "name"=>"tor01"
2573
+ }
2574
+ }
2575
+ },
2576
+ {
2577
+ "template"=>
2578
+ {
2579
+ "datacenter"=>
2580
+ {
2581
+ "name"=>"mel01"
2582
+ }
2583
+ }
2584
+ },
2585
+ {
2586
+ "template"=>
2587
+ {
2588
+ "datacenter"=>
2589
+ {
2590
+ "name"=>"par01"
2591
+ }
2592
+ }
2593
+ },
2594
+ {
2595
+ "template"=>
2596
+ {
2597
+ "datacenter"=>
2598
+ {
2599
+ "name"=>"mex01"
2600
+ }
2601
+ }
2602
+ },
2603
+ {
2604
+ "template"=>
2605
+ {
2606
+ "datacenter"=>
2607
+ {
2608
+ "name"=>"tok02"
2609
+ }
2610
+ }
2611
+ },
2612
+ {
2613
+ "template"=>
2614
+ {
2615
+ "datacenter"=>
2616
+ {
2617
+ "name"=>"fra02"
2618
+ }
2619
+ }
2620
+ }
2621
+ ],
2622
+ "memory"=>
2623
+ [
2624
+ {
2625
+ "itemPrice"=>
2626
+ {
2627
+ "hourlyRecurringFee"=>".019",
2628
+ "recurringFee"=>"12.6",
2629
+ "item"=>
2630
+ {
2631
+ "description"=>"1 GB"
2632
+ }
2633
+ },
2634
+ "template"=>
2635
+ {
2636
+ "maxMemory"=>1024
2637
+ }
2638
+ },
2639
+ {
2640
+ "itemPrice"=>
2641
+ {
2642
+ "hourlyRecurringFee"=>".038",
2643
+ "recurringFee"=>"25.2",
2644
+ "item"=>
2645
+ {
2646
+ "description"=>"2 GB"
2647
+ }
2648
+ },
2649
+ "template"=>
2650
+ {
2651
+ "maxMemory"=>2048
2652
+ }
2653
+ },
2654
+ {
2655
+ "itemPrice"=>
2656
+ {
2657
+ "hourlyRecurringFee"=>".077",
2658
+ "recurringFee"=>"50.4",
2659
+ "item"=>
2660
+ {
2661
+ "description"=>"4 GB"
2662
+ }
2663
+ },
2664
+ "template"=>
2665
+ {
2666
+ "maxMemory"=>4096
2667
+ }
2668
+ },
2669
+ {
2670
+ "itemPrice"=>
2671
+ {
2672
+ "hourlyRecurringFee"=>".11",
2673
+ "recurringFee"=>"72",
2674
+ "item"=>
2675
+ {
2676
+ "description"=>"6 GB"
2677
+ }
2678
+ },
2679
+ "template"=>
2680
+ {
2681
+ "maxMemory"=>6144
2682
+ }
2683
+ },
2684
+ {
2685
+ "itemPrice"=>
2686
+ {
2687
+ "hourlyRecurringFee"=>".142",
2688
+ "recurringFee"=>"93.6",
2689
+ "item"=>
2690
+ {
2691
+ "description"=>"8 GB"
2692
+ }
2693
+ },
2694
+ "template"=>
2695
+ {
2696
+ "maxMemory"=>8192
2697
+ }
2698
+ },
2699
+ {
2700
+ "itemPrice"=>
2701
+ {
2702
+ "hourlyRecurringFee"=>".197",
2703
+ "recurringFee"=>"129.6",
2704
+ "item"=>
2705
+ {
2706
+ "description"=>"12 GB"
2707
+ }
2708
+ },
2709
+ "template"=>
2710
+ {
2711
+ "maxMemory"=>12288
2712
+ }
2713
+ },
2714
+ {
2715
+ "itemPrice"=>
2716
+ {
2717
+ "hourlyRecurringFee"=>".252",
2718
+ "recurringFee"=>"165.6",
2719
+ "item"=>
2720
+ {
2721
+ "description"=>"16 GB"
2722
+ }
2723
+ },
2724
+ "template"=>
2725
+ {
2726
+ "maxMemory"=>16384
2727
+ }
2728
+ },
2729
+ {
2730
+ "itemPrice"=>
2731
+ {
2732
+ "hourlyRecurringFee"=>".427",
2733
+ "recurringFee"=>"280.8",
2734
+ "item"=>
2735
+ {
2736
+ "description"=>"32 GB"
2737
+ }
2738
+ },
2739
+ "template"=>
2740
+ {
2741
+ "maxMemory"=>32768
2742
+ }
2743
+ },
2744
+ {
2745
+ "itemPrice"=>
2746
+ {
2747
+ "hourlyRecurringFee"=>".559",
2748
+ "recurringFee"=>"367.2",
2749
+ "item"=>
2750
+ {
2751
+ "description"=>"48 GB"
2752
+ }
2753
+ },
2754
+ "template"=>
2755
+ {
2756
+ "maxMemory"=>49152
2757
+ }
2758
+ },
2759
+ {
2760
+ "itemPrice"=>
2761
+ {
2762
+ "hourlyRecurringFee"=>".69",
2763
+ "recurringFee"=>"453.6",
2764
+ "item"=>
2765
+ {
2766
+ "description"=>"64 GB"
2767
+ }
2768
+ },
2769
+ "template"=>
2770
+ {
2771
+ "maxMemory"=>65536
2772
+ }
2773
+ }
2774
+ ],
2775
+ "networkComponents"=>
2776
+ [
2777
+ {
2778
+ "itemPrice"=>
2779
+ {
2780
+ "hourlyRecurringFee"=>"0",
2781
+ "recurringFee"=>"0",
2782
+ "item"=>
2783
+ {
2784
+ "description"=>"10 Mbps Public & Private Network Uplinks"
2785
+ }
2786
+ },
2787
+ "template"=>
2788
+ {
2789
+ "id"=>nil,
2790
+ "networkComponents"=>
2791
+ [
2792
+ {
2793
+ "maxSpeed"=>10
2794
+ }
2795
+ ],
2796
+ "privateNetworkOnlyFlag"=>false
2797
+ }
2798
+ },
2799
+ {
2800
+ "itemPrice"=>
2801
+ {
2802
+ "hourlyRecurringFee"=>"0",
2803
+ "recurringFee"=>"0",
2804
+ "item"=>
2805
+ {
2806
+ "description"=>"100 Mbps Public & Private Network Uplinks"
2807
+ }
2808
+ },
2809
+ "template"=>
2810
+ {
2811
+ "id"=>nil,
2812
+ "networkComponents"=>
2813
+ [
2814
+ {
2815
+ "maxSpeed"=>100
2816
+ }
2817
+ ],
2818
+ "privateNetworkOnlyFlag"=>false
2819
+ }
2820
+ },
2821
+ {
2822
+ "itemPrice"=>
2823
+ {
2824
+ "hourlyRecurringFee"=>".04",
2825
+ "recurringFee"=>"20",
2826
+ "item"=>
2827
+ {
2828
+ "description"=>"1 Gbps Public & Private Network Uplinks"
2829
+ }
2830
+ },
2831
+ "template"=>
2832
+ {
2833
+ "id"=>nil,
2834
+ "networkComponents"=>
2835
+ [
2836
+ {
2837
+ "maxSpeed"=>1000
2838
+ }
2839
+ ],
2840
+ "privateNetworkOnlyFlag"=>false
2841
+ }
2842
+ },
2843
+ {
2844
+ "itemPrice"=>
2845
+ {
2846
+ "hourlyRecurringFee"=>"0",
2847
+ "recurringFee"=>"0",
2848
+ "item"=>
2849
+ {
2850
+ "description"=>"10 Mbps Private Network Uplink"
2851
+ }
2852
+ },
2853
+ "template"=>
2854
+ {
2855
+ "id"=>nil,
2856
+ "networkComponents"=>
2857
+ [
2858
+ {
2859
+ "maxSpeed"=>10
2860
+ }
2861
+ ],
2862
+ "privateNetworkOnlyFlag"=>true
2863
+ }
2864
+ },
2865
+ {
2866
+ "itemPrice"=>
2867
+ {
2868
+ "hourlyRecurringFee"=>"0",
2869
+ "recurringFee"=>"0",
2870
+ "item"=>
2871
+ {
2872
+ "description"=>"100 Mbps Private Network Uplink"
2873
+ }
2874
+ },
2875
+ "template"=>
2876
+ {
2877
+ "id"=>nil,
2878
+ "networkComponents"=>
2879
+ [
2880
+ {
2881
+ "maxSpeed"=>100
2882
+ }
2883
+ ],
2884
+ "privateNetworkOnlyFlag"=>true
2885
+ }
2886
+ },
2887
+ {
2888
+ "itemPrice"=>
2889
+ {
2890
+ "hourlyRecurringFee"=>".02",
2891
+ "recurringFee"=>"10",
2892
+ "item"=>
2893
+ {
2894
+ "description"=>"1 Gbps Private Network Uplink"
2895
+ }
2896
+ },
2897
+ "template"=>
2898
+ {
2899
+ "id"=>nil,
2900
+ "networkComponents"=>
2901
+ [
2902
+ {
2903
+ "maxSpeed"=>1000
2904
+ }
2905
+ ],
2906
+ "privateNetworkOnlyFlag"=>true
2907
+ }
2908
+ }
2909
+ ],
2910
+ "operatingSystems"=>
2911
+ [
2912
+ {
2913
+ "itemPrice"=>
2914
+ {
2915
+ "hourlyRecurringFee"=>"0",
2916
+ "recurringFee"=>"0",
2917
+ "item"=>
2918
+ {
2919
+ "description"=>"CentOS - Latest"
2920
+ }
2921
+ },
2922
+ "template"=>
2923
+ {
2924
+ "id"=>nil,
2925
+ "operatingSystemReferenceCode"=>"CENTOS_LATEST"
2926
+ }
2927
+ },
2928
+ {
2929
+ "itemPrice"=>
2930
+ {
2931
+ "hourlyRecurringFee"=>"0",
2932
+ "recurringFee"=>"0",
2933
+ "item"=>
2934
+ {
2935
+ "description"=>"CentOS - Latest (64 bit)"
2936
+ }
2937
+ },
2938
+ "template"=>
2939
+ {
2940
+ "id"=>nil,
2941
+ "operatingSystemReferenceCode"=>"CENTOS_LATEST_64"
2942
+ }
2943
+ },
2944
+ {
2945
+ "itemPrice"=>
2946
+ {
2947
+ "hourlyRecurringFee"=>"0",
2948
+ "recurringFee"=>"0",
2949
+ "item"=>
2950
+ {
2951
+ "description"=>"CentOS - Latest (32 bit)"
2952
+ }
2953
+ },
2954
+ "template"=>
2955
+ {
2956
+ "id"=>nil,
2957
+ "operatingSystemReferenceCode"=>"CENTOS_LATEST_32"
2958
+ }
2959
+ },
2960
+ {
2961
+ "itemPrice"=>
2962
+ {
2963
+ "hourlyRecurringFee"=>"0",
2964
+ "recurringFee"=>"0",
2965
+ "item"=>
2966
+ {
2967
+ "description"=>"CentOS 7.x - Minimal Install (64 bit)"
2968
+ }
2969
+ },
2970
+ "template"=>
2971
+ {
2972
+ "id"=>nil,
2973
+ "operatingSystemReferenceCode"=>"CENTOS_7_64"
2974
+ }
2975
+ },
2976
+ {
2977
+ "itemPrice"=>
2978
+ {
2979
+ "hourlyRecurringFee"=>"0",
2980
+ "recurringFee"=>"0",
2981
+ "item"=>
2982
+ {
2983
+ "description"=>"CentOS 6.x - Minimal Install (64 bit)"
2984
+ }
2985
+ },
2986
+ "template"=>
2987
+ {
2988
+ "id"=>nil,
2989
+ "operatingSystemReferenceCode"=>"CENTOS_6_64"
2990
+ }
2991
+ },
2992
+ {
2993
+ "itemPrice"=>
2994
+ {
2995
+ "hourlyRecurringFee"=>"0",
2996
+ "recurringFee"=>"0",
2997
+ "item"=>
2998
+ {
2999
+ "description"=>"CentOS 6.x - Minimal Install (32 bit)"
3000
+ }
3001
+ },
3002
+ "template"=>
3003
+ {
3004
+ "id"=>nil,
3005
+ "operatingSystemReferenceCode"=>"CENTOS_6_32"
3006
+ }
3007
+ },
3008
+ {
3009
+ "itemPrice"=>
3010
+ {
3011
+ "hourlyRecurringFee"=>"0",
3012
+ "recurringFee"=>"0",
3013
+ "item"=>
3014
+ {
3015
+ "description"=>"CentOS 5.x - Minimal Install (64 bit)"
3016
+ }
3017
+ },
3018
+ "template"=>
3019
+ {
3020
+ "id"=>nil,
3021
+ "operatingSystemReferenceCode"=>"CENTOS_5_64"
3022
+ }
3023
+ },
3024
+ {
3025
+ "itemPrice"=>
3026
+ {
3027
+ "hourlyRecurringFee"=>"0",
3028
+ "recurringFee"=>"0",
3029
+ "item"=>
3030
+ {
3031
+ "description"=>"CentOS 5.x - Minimal Install (32 bit)"
3032
+ }
3033
+ },
3034
+ "template"=>
3035
+ {
3036
+ "id"=>nil,
3037
+ "operatingSystemReferenceCode"=>"CENTOS_5_32"
3038
+ }
3039
+ },
3040
+ {
3041
+ "itemPrice"=>
3042
+ {
3043
+ "recurringFee"=>"12",
3044
+ "item"=>
3045
+ {
3046
+ "description"=>"CloudLinux - Latest"
3047
+ }
3048
+ },
3049
+ "template"=>
3050
+ {
3051
+ "id"=>nil,
3052
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_LATEST"
3053
+ }
3054
+ },
3055
+ {
3056
+ "itemPrice"=>
3057
+ {
3058
+ "recurringFee"=>"12",
3059
+ "item"=>
3060
+ {
3061
+ "description"=>"CloudLinux - Latest (64 bit)"
3062
+ }
3063
+ },
3064
+ "template"=>
3065
+ {
3066
+ "id"=>nil,
3067
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_LATEST_64"
3068
+ }
3069
+ },
3070
+ {
3071
+ "itemPrice"=>
3072
+ {
3073
+ "recurringFee"=>"12",
3074
+ "item"=>
3075
+ {
3076
+ "description"=>"CloudLinux - Latest (32 bit)"
3077
+ }
3078
+ },
3079
+ "template"=>
3080
+ {
3081
+ "id"=>nil,
3082
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_LATEST_32"
3083
+ }
3084
+ },
3085
+ {
3086
+ "itemPrice"=>
3087
+ {
3088
+ "recurringFee"=>"12",
3089
+ "item"=>
3090
+ {
3091
+ "description"=>"CloudLinux 6.x (64 bit)"
3092
+ }
3093
+ },
3094
+ "template"=>
3095
+ {
3096
+ "id"=>nil,
3097
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_6_64"
3098
+ }
3099
+ },
3100
+ {
3101
+ "itemPrice"=>
3102
+ {
3103
+ "recurringFee"=>"12",
3104
+ "item"=>
3105
+ {
3106
+ "description"=>"CloudLinux 6.x (32 bit)"
3107
+ }
3108
+ },
3109
+ "template"=>
3110
+ {
3111
+ "id"=>nil,
3112
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_6_32"
3113
+ }
3114
+ },
3115
+ {
3116
+ "itemPrice"=>
3117
+ {
3118
+ "recurringFee"=>"12",
3119
+ "item"=>
3120
+ {
3121
+ "description"=>"CloudLinux 5.x (64 bit)"
3122
+ }
3123
+ },
3124
+ "template"=>
3125
+ {
3126
+ "id"=>nil,
3127
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_5_64"
3128
+ }
3129
+ },
3130
+ {
3131
+ "itemPrice"=>
3132
+ {
3133
+ "recurringFee"=>"12",
3134
+ "item"=>
3135
+ {
3136
+ "description"=>"CloudLinux 5.x (32 bit)"
3137
+ }
3138
+ },
3139
+ "template"=>
3140
+ {
3141
+ "id"=>nil,
3142
+ "operatingSystemReferenceCode"=>"CLOUDLINUX_5_32"
3143
+ }
3144
+ },
3145
+ {
3146
+ "itemPrice"=>
3147
+ {
3148
+ "hourlyRecurringFee"=>"0",
3149
+ "recurringFee"=>"0",
3150
+ "item"=>
3151
+ {
3152
+ "description"=>"Debian - Latest"
3153
+ }
3154
+ },
3155
+ "template"=>
3156
+ {
3157
+ "id"=>nil,
3158
+ "operatingSystemReferenceCode"=>"DEBIAN_LATEST"
3159
+ }
3160
+ },
3161
+ {
3162
+ "itemPrice"=>
3163
+ {
3164
+ "hourlyRecurringFee"=>"0",
3165
+ "recurringFee"=>"0",
3166
+ "item"=>
3167
+ {
3168
+ "description"=>"Debian - Latest (64 bit)"
3169
+ }
3170
+ },
3171
+ "template"=>
3172
+ {
3173
+ "id"=>nil,
3174
+ "operatingSystemReferenceCode"=>"DEBIAN_LATEST_64"
3175
+ }
3176
+ },
3177
+ {
3178
+ "itemPrice"=>
3179
+ {
3180
+ "hourlyRecurringFee"=>"0",
3181
+ "recurringFee"=>"0",
3182
+ "item"=>
3183
+ {
3184
+ "description"=>"Debian - Latest (32 bit)"
3185
+ }
3186
+ },
3187
+ "template"=>
3188
+ {
3189
+ "id"=>nil,
3190
+ "operatingSystemReferenceCode"=>"DEBIAN_LATEST_32"
3191
+ }
3192
+ },
3193
+ {
3194
+ "itemPrice"=>
3195
+ {
3196
+ "hourlyRecurringFee"=>"0",
3197
+ "recurringFee"=>"0",
3198
+ "item"=>
3199
+ {
3200
+ "description"=>"Debian GNU/Linux 7.x Wheezy/Stable - Minimal Install (64 bit)"
3201
+ }
3202
+ },
3203
+ "template"=>
3204
+ {
3205
+ "id"=>nil,
3206
+ "operatingSystemReferenceCode"=>"DEBIAN_7_64"
3207
+ }
3208
+ },
3209
+ {
3210
+ "itemPrice"=>
3211
+ {
3212
+ "hourlyRecurringFee"=>"0",
3213
+ "recurringFee"=>"0",
3214
+ "item"=>
3215
+ {
3216
+ "description"=>"Debian GNU/Linux 7.x Wheezy/Stable - Minimal Install (32 bit)"
3217
+ }
3218
+ },
3219
+ "template"=>
3220
+ {
3221
+ "id"=>nil,
3222
+ "operatingSystemReferenceCode"=>"DEBIAN_7_32"
3223
+ }
3224
+ },
3225
+ {
3226
+ "itemPrice"=>
3227
+ {
3228
+ "hourlyRecurringFee"=>"0",
3229
+ "recurringFee"=>"0",
3230
+ "item"=>
3231
+ {
3232
+ "description"=>"Debian GNU/Linux 6.x Squeeze/Stable - Minimal Install (64 bit)"
3233
+ }
3234
+ },
3235
+ "template"=>
3236
+ {
3237
+ "id"=>nil,
3238
+ "operatingSystemReferenceCode"=>"DEBIAN_6_64"
3239
+ }
3240
+ },
3241
+ {
3242
+ "itemPrice"=>
3243
+ {
3244
+ "hourlyRecurringFee"=>"0",
3245
+ "recurringFee"=>"0",
3246
+ "item"=>
3247
+ {
3248
+ "description"=>"Debian GNU/Linux 6.x Squeeze/Stable - Minimal Install (32 bit)"
3249
+ }
3250
+ },
3251
+ "template"=>
3252
+ {
3253
+ "id"=>nil,
3254
+ "operatingSystemReferenceCode"=>"DEBIAN_6_32"
3255
+ }
3256
+ },
3257
+ {
3258
+ "itemPrice"=>
3259
+ {
3260
+ "hourlyRecurringFee"=>".08",
3261
+ "recurringFee"=>"45",
3262
+ "item"=>
3263
+ {
3264
+ "description"=>"Redhat EL - Latest"
3265
+ }
3266
+ },
3267
+ "template"=>
3268
+ {
3269
+ "id"=>nil,
3270
+ "operatingSystemReferenceCode"=>"REDHAT_LATEST"
3271
+ }
3272
+ },
3273
+ {
3274
+ "itemPrice"=>
3275
+ {
3276
+ "hourlyRecurringFee"=>".08",
3277
+ "recurringFee"=>"45",
3278
+ "item"=>
3279
+ {
3280
+ "description"=>"Redhat EL - Latest (64 bit)"
3281
+ }
3282
+ },
3283
+ "template"=>
3284
+ {
3285
+ "id"=>nil,
3286
+ "operatingSystemReferenceCode"=>"REDHAT_LATEST_64"
3287
+ }
3288
+ },
3289
+ {
3290
+ "itemPrice"=>
3291
+ {
3292
+ "hourlyRecurringFee"=>".08",
3293
+ "recurringFee"=>"45",
3294
+ "item"=>
3295
+ {
3296
+ "description"=>"Redhat EL - Latest (32 bit)"
3297
+ }
3298
+ },
3299
+ "template"=>
3300
+ {
3301
+ "id"=>nil,
3302
+ "operatingSystemReferenceCode"=>"REDHAT_LATEST_32"
3303
+ }
3304
+ },
3305
+ {
3306
+ "itemPrice"=>
3307
+ {
3308
+ "hourlyRecurringFee"=>".08",
3309
+ "recurringFee"=>"45",
3310
+ "item"=>
3311
+ {
3312
+ "description"=>"Red Hat Enterprise Linux 6.x - Minimal Install (64 bit)"
3313
+ }
3314
+ },
3315
+ "template"=>
3316
+ {
3317
+ "id"=>nil,
3318
+ "operatingSystemReferenceCode"=>"REDHAT_6_64"
3319
+ }
3320
+ },
3321
+ {
3322
+ "itemPrice"=>
3323
+ {
3324
+ "hourlyRecurringFee"=>".08",
3325
+ "recurringFee"=>"45",
3326
+ "item"=>
3327
+ {
3328
+ "description"=>"Red Hat Enterprise Linux 6.x - Minimal Install (32 bit)"
3329
+ }
3330
+ },
3331
+ "template"=>
3332
+ {
3333
+ "id"=>nil,
3334
+ "operatingSystemReferenceCode"=>"REDHAT_6_32"
3335
+ }
3336
+ },
3337
+ {
3338
+ "itemPrice"=>
3339
+ {
3340
+ "hourlyRecurringFee"=>".08",
3341
+ "recurringFee"=>"45",
3342
+ "item"=>
3343
+ {
3344
+ "description"=>"Red Hat Enterprise Linux 5.x - Minimal Install (64 bit)"
3345
+ }
3346
+ },
3347
+ "template"=>
3348
+ {
3349
+ "id"=>nil,
3350
+ "operatingSystemReferenceCode"=>"REDHAT_5_64"
3351
+ }
3352
+ },
3353
+ {
3354
+ "itemPrice"=>
3355
+ {
3356
+ "hourlyRecurringFee"=>".08",
3357
+ "recurringFee"=>"45",
3358
+ "item"=>
3359
+ {
3360
+ "description"=>"Red Hat Enterprise Linux 5.x - Minimal Install (32 bit)"
3361
+ }
3362
+ },
3363
+ "template"=>
3364
+ {
3365
+ "id"=>nil,
3366
+ "operatingSystemReferenceCode"=>"REDHAT_5_32"
3367
+ }
3368
+ },
3369
+ {
3370
+ "itemPrice"=>
3371
+ {
3372
+ "hourlyRecurringFee"=>"0",
3373
+ "recurringFee"=>"0",
3374
+ "item"=>
3375
+ {
3376
+ "description"=>"Ubuntu - Latest"
3377
+ }
3378
+ },
3379
+ "template"=>
3380
+ {
3381
+ "id"=>nil,
3382
+ "operatingSystemReferenceCode"=>"UBUNTU_LATEST"
3383
+ }
3384
+ },
3385
+ {
3386
+ "itemPrice"=>
3387
+ {
3388
+ "hourlyRecurringFee"=>"0",
3389
+ "recurringFee"=>"0",
3390
+ "item"=>
3391
+ {
3392
+ "description"=>"Ubuntu - Latest (64 bit)"
3393
+ }
3394
+ },
3395
+ "template"=>
3396
+ {
3397
+ "id"=>nil,
3398
+ "operatingSystemReferenceCode"=>"UBUNTU_LATEST_64"
3399
+ }
3400
+ },
3401
+ {
3402
+ "itemPrice"=>
3403
+ {
3404
+ "hourlyRecurringFee"=>"0",
3405
+ "recurringFee"=>"0",
3406
+ "item"=>
3407
+ {
3408
+ "description"=>"Ubuntu - Latest (32 bit)"
3409
+ }
3410
+ },
3411
+ "template"=>
3412
+ {
3413
+ "id"=>nil,
3414
+ "operatingSystemReferenceCode"=>"UBUNTU_LATEST_32"
3415
+ }
3416
+ },
3417
+ {
3418
+ "itemPrice"=>
3419
+ {
3420
+ "hourlyRecurringFee"=>"0",
3421
+ "recurringFee"=>"0",
3422
+ "item"=>
3423
+ {
3424
+ "description"=>"Ubuntu Linux 14.04 LTS Trusty Tahr - Minimal Install (64 bit)"
3425
+ }
3426
+ },
3427
+ "template"=>
3428
+ {
3429
+ "id"=>nil,
3430
+ "operatingSystemReferenceCode"=>"UBUNTU_14_64"
3431
+ }
3432
+ },
3433
+ {
3434
+ "itemPrice"=>
3435
+ {
3436
+ "hourlyRecurringFee"=>"0",
3437
+ "recurringFee"=>"0",
3438
+ "item"=>
3439
+ {
3440
+ "description"=>"Ubuntu Linux 14.04 LTS Trusty Tahr - Minimal Install (32 bit)"
3441
+ }
3442
+ },
3443
+ "template"=>
3444
+ {
3445
+ "id"=>nil,
3446
+ "operatingSystemReferenceCode"=>"UBUNTU_14_32"
3447
+ }
3448
+ },
3449
+ {
3450
+ "itemPrice"=>
3451
+ {
3452
+ "hourlyRecurringFee"=>"0",
3453
+ "recurringFee"=>"0",
3454
+ "item"=>
3455
+ {
3456
+ "description"=>"Ubuntu Linux 12.04 LTS Precise Pangolin - Minimal Install (64 bit)"
3457
+ }
3458
+ },
3459
+ "template"=>
3460
+ {
3461
+ "id"=>nil,
3462
+ "operatingSystemReferenceCode"=>"UBUNTU_12_64"
3463
+ }
3464
+ },
3465
+ {
3466
+ "itemPrice"=>
3467
+ {
3468
+ "hourlyRecurringFee"=>"0",
3469
+ "recurringFee"=>"0",
3470
+ "item"=>
3471
+ {
3472
+ "description"=>"Ubuntu Linux 12.04 LTS Precise Pangolin - Minimal Install (32 bit)"
3473
+ }
3474
+ },
3475
+ "template"=>
3476
+ {
3477
+ "id"=>nil,
3478
+ "operatingSystemReferenceCode"=>"UBUNTU_12_32"
3479
+ }
3480
+ },
3481
+ {
3482
+ "itemPrice"=>
3483
+ {
3484
+ "hourlyRecurringFee"=>"0",
3485
+ "recurringFee"=>"0",
3486
+ "item"=>
3487
+ {
3488
+ "description"=>"Ubuntu Linux 10.04 LTS Lucid Lynx - Minimal Install (64 bit)"
3489
+ }
3490
+ },
3491
+ "template"=>
3492
+ {
3493
+ "id"=>nil,
3494
+ "operatingSystemReferenceCode"=>"UBUNTU_10_64"
3495
+ }
3496
+ },
3497
+ {
3498
+ "itemPrice"=>
3499
+ {
3500
+ "hourlyRecurringFee"=>"0",
3501
+ "recurringFee"=>"0",
3502
+ "item"=>
3503
+ {
3504
+ "description"=>"Ubuntu Linux 10.04 LTS Lucid Lynx - Minimal Install (32 bit)"
3505
+ }
3506
+ },
3507
+ "template"=>
3508
+ {
3509
+ "id"=>nil,
3510
+ "operatingSystemReferenceCode"=>"UBUNTU_10_32"
3511
+ }
3512
+ },
3513
+ {
3514
+ "itemPrice"=>
3515
+ {
3516
+ "hourlyRecurringFee"=>"0",
3517
+ "recurringFee"=>"0",
3518
+ "item"=>
3519
+ {
3520
+ "description"=>"Vyatta Vyatta Community Edition for VSI - Latest"
3521
+ }
3522
+ },
3523
+ "template"=>
3524
+ {
3525
+ "id"=>nil,
3526
+ "operatingSystemReferenceCode"=>"VYATTACE_LATEST"
3527
+ }
3528
+ },
3529
+ {
3530
+ "itemPrice"=>
3531
+ {
3532
+ "hourlyRecurringFee"=>"0",
3533
+ "recurringFee"=>"0",
3534
+ "item"=>
3535
+ {
3536
+ "description"=>"Vyatta Vyatta Community Edition for VSI - Latest (64 bit)"
3537
+ }
3538
+ },
3539
+ "template"=>
3540
+ {
3541
+ "id"=>nil,
3542
+ "operatingSystemReferenceCode"=>"VYATTACE_LATEST_64"
3543
+ }
3544
+ },
3545
+ {
3546
+ "itemPrice"=>
3547
+ {
3548
+ "hourlyRecurringFee"=>"0",
3549
+ "recurringFee"=>"0",
3550
+ "item"=>
3551
+ {
3552
+ "description"=>"Vyatta 6.6 Community Edition (64 bit)"
3553
+ }
3554
+ },
3555
+ "template"=>
3556
+ {
3557
+ "id"=>nil,
3558
+ "operatingSystemReferenceCode"=>"VYATTACE_6.6_64"
3559
+ }
3560
+ },
3561
+ {
3562
+ "itemPrice"=>
3563
+ {
3564
+ "hourlyRecurringFee"=>"0",
3565
+ "recurringFee"=>"0",
3566
+ "item"=>
3567
+ {
3568
+ "description"=>"Vyatta 6.5 Community Edition (64 bit)"
3569
+ }
3570
+ },
3571
+ "template"=>
3572
+ {
3573
+ "id"=>nil,
3574
+ "operatingSystemReferenceCode"=>"VYATTACE_6.5_64"
3575
+ }
3576
+ },
3577
+ {
3578
+ "itemPrice"=>
3579
+ {
3580
+ "hourlyRecurringFee"=>".024",
3581
+ "recurringFee"=>"17",
3582
+ "item"=>
3583
+ {
3584
+ "description"=>"Windows - Latest"
3585
+ }
3586
+ },
3587
+ "template"=>
3588
+ {
3589
+ "id"=>nil,
3590
+ "operatingSystemReferenceCode"=>"WIN_LATEST"
3591
+ }
3592
+ },
3593
+ {
3594
+ "itemPrice"=>
3595
+ {
3596
+ "hourlyRecurringFee"=>".024",
3597
+ "recurringFee"=>"17",
3598
+ "item"=>
3599
+ {
3600
+ "description"=>"Windows - Latest (64 bit)"
3601
+ }
3602
+ },
3603
+ "template"=>
3604
+ {
3605
+ "id"=>nil,
3606
+ "operatingSystemReferenceCode"=>"WIN_LATEST_64"
3607
+ }
3608
+ },
3609
+ {
3610
+ "itemPrice"=>
3611
+ {
3612
+ "hourlyRecurringFee"=>".024",
3613
+ "recurringFee"=>"17",
3614
+ "item"=>
3615
+ {
3616
+ "description"=>"Windows - Latest (32 bit)"
3617
+ }
3618
+ },
3619
+ "template"=>
3620
+ {
3621
+ "id"=>nil,
3622
+ "operatingSystemReferenceCode"=>"WIN_LATEST_32"
3623
+ }
3624
+ },
3625
+ {
3626
+ "itemPrice"=>
3627
+ {
3628
+ "hourlyRecurringFee"=>".024",
3629
+ "recurringFee"=>"17",
3630
+ "item"=>
3631
+ {
3632
+ "description"=>"Windows Server 2012 Standard Edition (64 bit)"
3633
+ }
3634
+ },
3635
+ "template"=>
3636
+ {
3637
+ "id"=>nil,
3638
+ "operatingSystemReferenceCode"=>"WIN_2012-STD_64"
3639
+ }
3640
+ },
3641
+ {
3642
+ "itemPrice"=>
3643
+ {
3644
+ "hourlyRecurringFee"=>".18",
3645
+ "recurringFee"=>"125",
3646
+ "item"=>
3647
+ {
3648
+ "description"=>"Windows Server 2012 Datacenter Edition (64bit)"
3649
+ }
3650
+ },
3651
+ "template"=>
3652
+ {
3653
+ "id"=>nil,
3654
+ "operatingSystemReferenceCode"=>"WIN_2012-DC_64"
3655
+ }
3656
+ },
3657
+ {
3658
+ "itemPrice"=>
3659
+ {
3660
+ "hourlyRecurringFee"=>".024",
3661
+ "recurringFee"=>"17",
3662
+ "item"=>
3663
+ {
3664
+ "description"=>"Windows Server 2008 Standard Edition SP2 (64bit)"
3665
+ }
3666
+ },
3667
+ "template"=>
3668
+ {
3669
+ "id"=>nil,
3670
+ "operatingSystemReferenceCode"=>"WIN_2008-STD-SP2_64"
3671
+ }
3672
+ },
3673
+ {
3674
+ "itemPrice"=>
3675
+ {
3676
+ "hourlyRecurringFee"=>".024",
3677
+ "recurringFee"=>"17",
3678
+ "item"=>
3679
+ {
3680
+ "description"=>"Windows Server 2008 Standard Edition SP2 (32bit)"
3681
+ }
3682
+ },
3683
+ "template"=>
3684
+ {
3685
+ "id"=>nil,
3686
+ "operatingSystemReferenceCode"=>"WIN_2008-STD-SP2_32"
3687
+ }
3688
+ },
3689
+ {
3690
+ "itemPrice"=>
3691
+ {
3692
+ "hourlyRecurringFee"=>".024",
3693
+ "recurringFee"=>"17",
3694
+ "item"=>
3695
+ {
3696
+ "description"=>"Windows Server 2008 Standard SP1 with R2 (64 bit)"
3697
+ }
3698
+ },
3699
+ "template"=>
3700
+ {
3701
+ "id"=>nil,
3702
+ "operatingSystemReferenceCode"=>"WIN_2008-STD-R2-SP1_64"
3703
+ }
3704
+ },
3705
+ {
3706
+ "itemPrice"=>
3707
+ {
3708
+ "hourlyRecurringFee"=>".024",
3709
+ "recurringFee"=>"17",
3710
+ "item"=>
3711
+ {
3712
+ "description"=>"Windows Server 2008 R2 Standard Edition (64bit)"
3713
+ }
3714
+ },
3715
+ "template"=>
3716
+ {
3717
+ "id"=>nil,
3718
+ "operatingSystemReferenceCode"=>"WIN_2008-STD-R2_64"
3719
+ }
3720
+ },
3721
+ {
3722
+ "itemPrice"=>
3723
+ {
3724
+ "hourlyRecurringFee"=>".092",
3725
+ "recurringFee"=>"64",
3726
+ "item"=>
3727
+ {
3728
+ "description"=>"Windows Server 2008 Enterprise Edition SP2 (64bit)"
3729
+ }
3730
+ },
3731
+ "template"=>
3732
+ {
3733
+ "id"=>nil,
3734
+ "operatingSystemReferenceCode"=>"WIN_2008-ENT-SP2_64"
3735
+ }
3736
+ },
3737
+ {
3738
+ "itemPrice"=>
3739
+ {
3740
+ "hourlyRecurringFee"=>".092",
3741
+ "recurringFee"=>"64",
3742
+ "item"=>
3743
+ {
3744
+ "description"=>"Windows Server 2008 Enterprise Edition SP2 (32bit)"
3745
+ }
3746
+ },
3747
+ "template"=>
3748
+ {
3749
+ "id"=>nil,
3750
+ "operatingSystemReferenceCode"=>"WIN_2008-ENT-SP2_32"
3751
+ }
3752
+ },
3753
+ {
3754
+ "itemPrice"=>
3755
+ {
3756
+ "hourlyRecurringFee"=>".092",
3757
+ "recurringFee"=>"64",
3758
+ "item"=>
3759
+ {
3760
+ "description"=>"Windows Server 2008 R2 Enterprise Edition (64bit)"
3761
+ }
3762
+ },
3763
+ "template"=>
3764
+ {
3765
+ "id"=>nil,
3766
+ "operatingSystemReferenceCode"=>"WIN_2008-ENT-R2_64"
3767
+ }
3768
+ },
3769
+ {
3770
+ "itemPrice"=>
3771
+ {
3772
+ "hourlyRecurringFee"=>".18",
3773
+ "recurringFee"=>"125",
3774
+ "item"=>
3775
+ {
3776
+ "description"=>"Windows Server 2008 Datacenter Edition SP2 (64bit)"
3777
+ }
3778
+ },
3779
+ "template"=>
3780
+ {
3781
+ "id"=>nil,
3782
+ "operatingSystemReferenceCode"=>"WIN_2008-DC-SP2_64"
3783
+ }
3784
+ },
3785
+ {
3786
+ "itemPrice"=>
3787
+ {
3788
+ "hourlyRecurringFee"=>".18",
3789
+ "recurringFee"=>"125",
3790
+ "item"=>
3791
+ {
3792
+ "description"=>"Windows Server 2008 R2 Datacenter Edition (64bit)"
3793
+ }
3794
+ },
3795
+ "template"=>
3796
+ {
3797
+ "id"=>nil,
3798
+ "operatingSystemReferenceCode"=>"WIN_2008-DC-R2_64"
3799
+ }
3800
+ },
3801
+ {
3802
+ "itemPrice"=>
3803
+ {
3804
+ "hourlyRecurringFee"=>".024",
3805
+ "recurringFee"=>"17",
3806
+ "item"=>
3807
+ {
3808
+ "description"=>"Windows Server 2003 Standard SP2 with R2 (64 bit)"
3809
+ }
3810
+ },
3811
+ "template"=>
3812
+ {
3813
+ "id"=>nil,
3814
+ "operatingSystemReferenceCode"=>"WIN_2003-STD-SP2-5_64"
3815
+ }
3816
+ },
3817
+ {
3818
+ "itemPrice"=>
3819
+ {
3820
+ "hourlyRecurringFee"=>".024",
3821
+ "recurringFee"=>"17",
3822
+ "item"=>
3823
+ {
3824
+ "description"=>"Windows Server 2003 Standard SP2 with R2 (32 bit)"
3825
+ }
3826
+ },
3827
+ "template"=>
3828
+ {
3829
+ "id"=>nil,
3830
+ "operatingSystemReferenceCode"=>"WIN_2003-STD-SP2-5_32"
3831
+ }
3832
+ },
3833
+ {
3834
+ "itemPrice"=>
3835
+ {
3836
+ "hourlyRecurringFee"=>".092",
3837
+ "recurringFee"=>"64",
3838
+ "item"=>
3839
+ {
3840
+ "description"=>"Windows Server 2003 Enterprise SP2 with R2 (64 bit)"
3841
+ }
3842
+ },
3843
+ "template"=>
3844
+ {
3845
+ "id"=>nil,
3846
+ "operatingSystemReferenceCode"=>"WIN_2003-ENT-SP2-5_64"
3847
+ }
3848
+ },
3849
+ {
3850
+ "itemPrice"=>
3851
+ {
3852
+ "hourlyRecurringFee"=>".092",
3853
+ "recurringFee"=>"64",
3854
+ "item"=>
3855
+ {
3856
+ "description"=>"Windows Server 2003 Enterprise SP2 with R2 (32 bit)"
3857
+ }
3858
+ },
3859
+ "template"=>
3860
+ {
3861
+ "id"=>nil,
3862
+ "operatingSystemReferenceCode"=>"WIN_2003-ENT-SP2-5_32"
3863
+ }
3864
+ },
3865
+ {
3866
+ "itemPrice"=>
3867
+ {
3868
+ "hourlyRecurringFee"=>".18",
3869
+ "recurringFee"=>"125",
3870
+ "item"=>
3871
+ {
3872
+ "description"=>"Windows Server 2003 Datacenter SP2 with R2 (64 bit)"
3873
+ }
3874
+ },
3875
+ "template"=>
3876
+ {
3877
+ "id"=>nil,
3878
+ "operatingSystemReferenceCode"=>"WIN_2003-DC-SP2-1_64"
3879
+ }
3880
+ },
3881
+ {
3882
+ "itemPrice"=>
3883
+ {
3884
+ "hourlyRecurringFee"=>".18",
3885
+ "recurringFee"=>"125",
3886
+ "item"=>
3887
+ {
3888
+ "description"=>"Windows Server 2003 Datacenter SP2 with R2 (32 bit)"
3889
+ }
3890
+ },
3891
+ "template"=>
3892
+ {
3893
+ "id"=>nil,
3894
+ "operatingSystemReferenceCode"=>"WIN_2003-DC-SP2-1_32"
3895
+ }
3896
+ }
3897
+ ],
3898
+ "processors"=>
3899
+ [
3900
+ {
3901
+ "itemPrice"=>
3902
+ {
3903
+ "hourlyRecurringFee"=>".021",
3904
+ "recurringFee"=>"15",
3905
+ "item"=>
3906
+ {
3907
+ "description"=>"1 x 2.0 GHz Core"
3908
+ }
3909
+ },
3910
+ "template"=>
3911
+ {
3912
+ "startCpus"=>1
3913
+ }
3914
+ },
3915
+ {
3916
+ "itemPrice"=>
3917
+ {
3918
+ "hourlyRecurringFee"=>".041",
3919
+ "recurringFee"=>"30",
3920
+ "item"=>
3921
+ {
3922
+ "description"=>"2 x 2.0 GHz Cores"
3923
+ }
3924
+ },
3925
+ "template"=>
3926
+ {
3927
+ "startCpus"=>2
3928
+ }
3929
+ },
3930
+ {
3931
+ "itemPrice"=>
3932
+ {
3933
+ "hourlyRecurringFee"=>".082",
3934
+ "recurringFee"=>"60",
3935
+ "item"=>
3936
+ {
3937
+ "description"=>"4 x 2.0 GHz Cores"
3938
+ }
3939
+ },
3940
+ "template"=>
3941
+ {
3942
+ "startCpus"=>4
3943
+ }
3944
+ },
3945
+ {
3946
+ "itemPrice"=>
3947
+ {
3948
+ "hourlyRecurringFee"=>".164",
3949
+ "recurringFee"=>"120",
3950
+ "item"=>
3951
+ {
3952
+ "description"=>"8 x 2.0 GHz Cores"
3953
+ }
3954
+ },
3955
+ "template"=>
3956
+ {
3957
+ "startCpus"=>8
3958
+ }
3959
+ },
3960
+ {
3961
+ "itemPrice"=>
3962
+ {
3963
+ "hourlyRecurringFee"=>".247",
3964
+ "recurringFee"=>"180",
3965
+ "item"=>
3966
+ {
3967
+ "description"=>"12 x 2.0 GHz Cores"
3968
+ }
3969
+ },
3970
+ "template"=>
3971
+ {
3972
+ "startCpus"=>12
3973
+ }
3974
+ },
3975
+ {
3976
+ "itemPrice"=>
3977
+ {
3978
+ "hourlyRecurringFee"=>".329",
3979
+ "recurringFee"=>"240",
3980
+ "item"=>
3981
+ {
3982
+ "description"=>"16 x 2.0 GHz Cores"
3983
+ }
3984
+ },
3985
+ "template"=>
3986
+ {
3987
+ "startCpus"=>16
3988
+ }
3989
+ },
3990
+ {
3991
+ "itemPrice"=>
3992
+ {
3993
+ "hourlyRecurringFee"=>".2",
3994
+ "recurringFee"=>"139",
3995
+ "item"=>
3996
+ {
3997
+ "description"=>"Private 1 x 2.0 GHz Core"
3998
+ }
3999
+ },
4000
+ "template"=>
4001
+ {
4002
+ "dedicatedAccountHostOnlyFlag"=>true,
4003
+ "startCpus"=>1
4004
+ }
4005
+ },
4006
+ {
4007
+ "itemPrice"=>
4008
+ {
4009
+ "hourlyRecurringFee"=>".223",
4010
+ "recurringFee"=>"155",
4011
+ "item"=>
4012
+ {
4013
+ "description"=>"Private 2 x 2.0 GHz Cores"
4014
+ }
4015
+ },
4016
+ "template"=>
4017
+ {
4018
+ "dedicatedAccountHostOnlyFlag"=>true,
4019
+ "startCpus"=>2
4020
+ }
4021
+ },
4022
+ {
4023
+ "itemPrice"=>
4024
+ {
4025
+ "hourlyRecurringFee"=>".243",
4026
+ "recurringFee"=>"169",
4027
+ "item"=>
4028
+ {
4029
+ "description"=>"Private 4 x 2.0 GHz Cores"
4030
+ }
4031
+ },
4032
+ "template"=>
4033
+ {
4034
+ "dedicatedAccountHostOnlyFlag"=>true,
4035
+ "startCpus"=>4
4036
+ }
4037
+ },
4038
+ {
4039
+ "itemPrice"=>
4040
+ {
4041
+ "hourlyRecurringFee"=>".301",
4042
+ "recurringFee"=>"209",
4043
+ "item"=>
4044
+ {
4045
+ "description"=>"Private 8 x 2.0 GHz Cores"
4046
+ }
4047
+ },
4048
+ "template"=>
4049
+ {
4050
+ "dedicatedAccountHostOnlyFlag"=>true,
4051
+ "startCpus"=>8
4052
+ }
4053
+ }
4054
+ ]
4055
+ }
4056
+ end
4057
+ end
4058
+ end
4059
+ end
4060
+ end