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,22 @@
1
+ [
2
+ {
3
+ "owner_total": 1,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "status": "online",
8
+ "updated_at": "2011-10-18T03:53:24Z",
9
+ "account_id": "a-shpoolzz",
10
+ "offering_cpu_cores": 120,
11
+ "offering_memory_size": 350000,
12
+ "arch": "x86_64",
13
+ "hypervisor": "kvm",
14
+ "created_at": "2011-10-18T03:53:24Z",
15
+ "name": "testhost",
16
+ "uuid": "hp-testhost",
17
+ "id": "hp-testhost"
18
+ }
19
+ ],
20
+ "limit": null
21
+ }
22
+ ]
@@ -0,0 +1,23 @@
1
+ [
2
+ {
3
+ "owner_total": 1,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "updated_at": "2011-10-18T03:53:37Z",
8
+ "account_id": "a-shpoolzz",
9
+ "boot_dev_type": 1,
10
+ "description": "ubuntu-10.04_with-metadata_kvm_i386.raw volume",
11
+ "source": "--- \n:snapshot_id: snap-lucid4\n",
12
+ "state": "init",
13
+ "arch": "x86",
14
+ "is_public": false,
15
+ "created_at": "2011-10-18T03:53:37Z",
16
+ "uuid": "wmi-lucid4",
17
+ "id": "wmi-lucid4",
18
+ "md5sum": "8e0d8d37d704751a076fdf704a311350"
19
+ }
20
+ ],
21
+ "limit": null
22
+ }
23
+ ]
@@ -0,0 +1,23 @@
1
+ [
2
+ {
3
+ "start": 0,
4
+ "owner_total": 1,
5
+ "results": [
6
+ {
7
+ "cpu_cores": 2,
8
+ "memory_size": 512,
9
+ "arch": "x86_64",
10
+ "hypervisor": "kvm",
11
+ "updated_at": "2011-10-28T02:58:57Z",
12
+ "account_id": "a-shpoolzz",
13
+ "vifs": "--- \neth0: \n :bandwidth: 100000\n :index: 0\n",
14
+ "quota_weight": 1.0,
15
+ "id": "is-testspec",
16
+ "created_at": "2011-10-28T02:58:57Z",
17
+ "drives": "--- \nephemeral1: \n :type: :local\n :size: 100\n :index: 0\n",
18
+ "uuid": "is-testspec"
19
+ }
20
+ ],
21
+ "limit": null
22
+ }
23
+ ]
@@ -0,0 +1,56 @@
1
+ [
2
+ {
3
+ "owner_total": 1,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "vif": [
8
+ {
9
+ "ipv4": {
10
+ "nat_address": null,
11
+ "address": "192.168.2.95"
12
+ },
13
+ "vif_id": "vif-h85j75s9"
14
+ }
15
+ ],
16
+ "status": "online",
17
+ "memory_size": 256,
18
+ "ha_enabled": 0,
19
+ "network": [
20
+ {
21
+ "nat_ipaddr": [
22
+
23
+ ],
24
+ "nat_dns_name": null,
25
+ "dns_name": "9pia8e7p.shpoolzz.vdc.local",
26
+ "ipaddr": [
27
+ "192.168.2.95"
28
+ ],
29
+ "nat_network_name": null,
30
+ "network_name": "nw-data"
31
+ }
32
+ ],
33
+ "state": "running",
34
+ "image_id": "wmi-lucid4",
35
+ "arch": "x86_64",
36
+ "hostname": "9pia8e7p",
37
+ "host_node": "hp-testhost",
38
+ "created_at": "2011-10-18T06:48:47Z",
39
+ "instance_spec_id": "is-testspec",
40
+ "netfilter_group_id": [
41
+ "ng-testfgr"
42
+ ],
43
+ "ssh_key_pair": null,
44
+ "volume": [
45
+
46
+ ],
47
+ "netfilter_group": [
48
+ "default"
49
+ ],
50
+ "id": "i-9pia8e7p",
51
+ "cpu_cores": 1
52
+ }
53
+ ],
54
+ "limit": null
55
+ }
56
+ ]
@@ -0,0 +1,30 @@
1
+ [{
2
+ "vif": [
3
+
4
+ ],
5
+ "status": "init",
6
+ "memory_size": 512,
7
+ "ha_enabled": 0,
8
+ "network": [
9
+
10
+ ],
11
+ "state": "scheduling",
12
+ "image_id": "wmi-lucid4",
13
+ "arch": "x86_64",
14
+ "hostname": "9pia8e7g",
15
+ "host_node": null,
16
+ "created_at": "2011-10-18T06:48:47Z",
17
+ "instance_spec_id": "is-testspec",
18
+ "netfilter_group_id": [
19
+ "ng-demofgr"
20
+ ],
21
+ "ssh_key_pair": null,
22
+ "volume": [
23
+
24
+ ],
25
+ "netfilter_group": [
26
+ "default"
27
+ ],
28
+ "id": "i-9pia8e7g",
29
+ "cpu_cores": 2
30
+ }]
@@ -0,0 +1,8 @@
1
+ [
2
+ {
3
+ "owner_total": 0,
4
+ "start": 0,
5
+ "results": [],
6
+ "limit": null
7
+ }
8
+ ]
@@ -0,0 +1,139 @@
1
+ [
2
+ {
3
+ "owner_total": 10,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "id": "physical_server_id_01",
8
+ "name": "physical_server_name_01",
9
+ "uuid": "physical_server_name_01",
10
+ "status": "online",
11
+ "updated_at": "2011-10-18T03:53:24Z",
12
+ "account_id": "physical_server_account_id_01",
13
+ "offering_cpu_cores": 100,
14
+ "offering_memory_size": 100000,
15
+ "arch": "x86_64",
16
+ "hypervisor": "kvm",
17
+ "created_at": "2011-10-18T03:53:24Z"
18
+ },
19
+ {
20
+ "id": "physical_server_id_02",
21
+ "name": "physical_server_name_02",
22
+ "uuid": "physical_server_name_02",
23
+ "status": "online",
24
+ "updated_at": "2011-10-18T03:53:24Z",
25
+ "account_id": "physical_server_account_id_02",
26
+ "offering_cpu_cores": 200,
27
+ "offering_memory_size": 200000,
28
+ "arch": "x86_64",
29
+ "hypervisor": "kvm",
30
+ "created_at": "2011-10-18T03:53:24Z"
31
+ },
32
+ {
33
+ "id": "physical_server_id_03",
34
+ "name": "physical_server_name_03",
35
+ "uuid": "physical_server_name_03",
36
+ "status": "online",
37
+ "updated_at": "2011-10-18T03:53:24Z",
38
+ "account_id": "physical_server_account_id_03",
39
+ "offering_cpu_cores": 300,
40
+ "offering_memory_size": 300000,
41
+ "arch": "x86_64",
42
+ "hypervisor": "kvm",
43
+ "created_at": "2011-10-18T03:53:24Z"
44
+ },
45
+ {
46
+ "id": "physical_server_id_04",
47
+ "name": "physical_server_name_04",
48
+ "uuid": "physical_server_name_04",
49
+ "status": "online",
50
+ "updated_at": "2011-10-18T03:53:24Z",
51
+ "account_id": "physical_server_account_id_04",
52
+ "offering_cpu_cores": 400,
53
+ "offering_memory_size": 400000,
54
+ "arch": "x86_64",
55
+ "hypervisor": "kvm",
56
+ "created_at": "2011-10-18T03:53:24Z"
57
+ },
58
+ {
59
+ "id": "physical_server_id_05",
60
+ "name": "physical_server_name_05",
61
+ "uuid": "physical_server_name_05",
62
+ "status": "online",
63
+ "updated_at": "2011-10-18T03:53:24Z",
64
+ "account_id": "physical_server_account_id_05",
65
+ "offering_cpu_cores": 500,
66
+ "offering_memory_size": 500000,
67
+ "arch": "x86_64",
68
+ "hypervisor": "kvm",
69
+ "created_at": "2011-10-18T03:53:24Z"
70
+ },
71
+ {
72
+ "id": "physical_server_id_06",
73
+ "name": "physical_server_name_06",
74
+ "uuid": "physical_server_name_06",
75
+ "status": "online",
76
+ "updated_at": "2011-10-18T03:53:24Z",
77
+ "account_id": "physical_server_account_id_06",
78
+ "offering_cpu_cores": 600,
79
+ "offering_memory_size": 600000,
80
+ "arch": "x86_64",
81
+ "hypervisor": "kvm",
82
+ "created_at": "2011-10-18T03:53:24Z"
83
+ },
84
+ {
85
+ "id": "physical_server_id_07",
86
+ "name": "physical_server_name_07",
87
+ "uuid": "physical_server_name_07",
88
+ "status": "online",
89
+ "updated_at": "2011-10-18T03:53:24Z",
90
+ "account_id": "physical_server_account_id_07",
91
+ "offering_cpu_cores": 700,
92
+ "offering_memory_size": 700000,
93
+ "arch": "x86_64",
94
+ "hypervisor": "kvm",
95
+ "created_at": "2011-10-18T03:53:24Z"
96
+ },
97
+ {
98
+ "id": "physical_server_id_08",
99
+ "name": "physical_server_name_08",
100
+ "uuid": "physical_server_name_08",
101
+ "status": "online",
102
+ "updated_at": "2011-10-18T03:53:24Z",
103
+ "account_id": "physical_server_account_id_08",
104
+ "offering_cpu_cores": 800,
105
+ "offering_memory_size": 800000,
106
+ "arch": "x86_64",
107
+ "hypervisor": "kvm",
108
+ "created_at": "2011-10-18T03:53:24Z"
109
+ },
110
+ {
111
+ "id": "physical_server_id_09",
112
+ "name": "physical_server_name_09",
113
+ "uuid": "physical_server_name_09",
114
+ "status": "online",
115
+ "updated_at": "2011-10-18T03:53:24Z",
116
+ "account_id": "physical_server_account_id_09",
117
+ "offering_cpu_cores": 900,
118
+ "offering_memory_size": 900000,
119
+ "arch": "x86_64",
120
+ "hypervisor": "kvm",
121
+ "created_at": "2011-10-18T03:53:24Z"
122
+ },
123
+ {
124
+ "id": "physical_server_id_10",
125
+ "name": "physical_server_name_10",
126
+ "uuid": "physical_server_name_10",
127
+ "status": "registering",
128
+ "updated_at": "2011-10-18T03:53:24Z",
129
+ "account_id": "physical_server_account_id_10",
130
+ "offering_cpu_cores": 100,
131
+ "offering_memory_size": 100000,
132
+ "arch": "x86_64",
133
+ "hypervisor": "kvm",
134
+ "created_at": "2011-10-18T03:53:24Z"
135
+ }
136
+ ],
137
+ "limit": null
138
+ }
139
+ ]
@@ -0,0 +1,795 @@
1
+ [
2
+ {
3
+ "owner_total": 60,
4
+ "start": 0,
5
+ "results": [
6
+ {
7
+ "id": "physical_server_id_01",
8
+ "name": "physical_server_name_01",
9
+ "uuid": "physical_server_name_01",
10
+ "status": "online",
11
+ "updated_at": "2011-10-18T03:53:24Z",
12
+ "account_id": "physical_server_account_id_01",
13
+ "offering_cpu_cores": 100,
14
+ "offering_memory_size": 100000,
15
+ "arch": "x86_64",
16
+ "hypervisor": "kvm",
17
+ "created_at": "2011-10-18T03:53:24Z"
18
+ },
19
+ {
20
+ "id": "physical_server_id_02",
21
+ "name": "physical_server_name_02",
22
+ "uuid": "physical_server_name_02",
23
+ "status": "online",
24
+ "updated_at": "2011-10-18T03:53:24Z",
25
+ "account_id": "physical_server_account_id_02",
26
+ "offering_cpu_cores": 200,
27
+ "offering_memory_size": 200000,
28
+ "arch": "x86_64",
29
+ "hypervisor": "kvm",
30
+ "created_at": "2011-10-18T03:53:24Z"
31
+ },
32
+ {
33
+ "id": "physical_server_id_03",
34
+ "name": "physical_server_name_03",
35
+ "uuid": "physical_server_name_03",
36
+ "status": "online",
37
+ "updated_at": "2011-10-18T03:53:24Z",
38
+ "account_id": "physical_server_account_id_03",
39
+ "offering_cpu_cores": 300,
40
+ "offering_memory_size": 300000,
41
+ "arch": "x86_64",
42
+ "hypervisor": "kvm",
43
+ "created_at": "2011-10-18T03:53:24Z"
44
+ },
45
+ {
46
+ "id": "physical_server_id_04",
47
+ "name": "physical_server_name_04",
48
+ "uuid": "physical_server_name_04",
49
+ "status": "online",
50
+ "updated_at": "2011-10-18T03:53:24Z",
51
+ "account_id": "physical_server_account_id_04",
52
+ "offering_cpu_cores": 400,
53
+ "offering_memory_size": 400000,
54
+ "arch": "x86_64",
55
+ "hypervisor": "kvm",
56
+ "created_at": "2011-10-18T03:53:24Z"
57
+ },
58
+ {
59
+ "id": "physical_server_id_05",
60
+ "name": "physical_server_name_05",
61
+ "uuid": "physical_server_name_05",
62
+ "status": "online",
63
+ "updated_at": "2011-10-18T03:53:24Z",
64
+ "account_id": "physical_server_account_id_05",
65
+ "offering_cpu_cores": 500,
66
+ "offering_memory_size": 500000,
67
+ "arch": "x86_64",
68
+ "hypervisor": "kvm",
69
+ "created_at": "2011-10-18T03:53:24Z"
70
+ },
71
+ {
72
+ "id": "physical_server_id_06",
73
+ "name": "physical_server_name_06",
74
+ "uuid": "physical_server_name_06",
75
+ "status": "online",
76
+ "updated_at": "2011-10-18T03:53:24Z",
77
+ "account_id": "physical_server_account_id_06",
78
+ "offering_cpu_cores": 600,
79
+ "offering_memory_size": 600000,
80
+ "arch": "x86_64",
81
+ "hypervisor": "kvm",
82
+ "created_at": "2011-10-18T03:53:24Z"
83
+ },
84
+ {
85
+ "id": "physical_server_id_07",
86
+ "name": "physical_server_name_07",
87
+ "uuid": "physical_server_name_07",
88
+ "status": "online",
89
+ "updated_at": "2011-10-18T03:53:24Z",
90
+ "account_id": "physical_server_account_id_07",
91
+ "offering_cpu_cores": 700,
92
+ "offering_memory_size": 700000,
93
+ "arch": "x86_64",
94
+ "hypervisor": "kvm",
95
+ "created_at": "2011-10-18T03:53:24Z"
96
+ },
97
+ {
98
+ "id": "physical_server_id_08",
99
+ "name": "physical_server_name_08",
100
+ "uuid": "physical_server_name_08",
101
+ "status": "online",
102
+ "updated_at": "2011-10-18T03:53:24Z",
103
+ "account_id": "physical_server_account_id_08",
104
+ "offering_cpu_cores": 800,
105
+ "offering_memory_size": 800000,
106
+ "arch": "x86_64",
107
+ "hypervisor": "kvm",
108
+ "created_at": "2011-10-18T03:53:24Z"
109
+ },
110
+ {
111
+ "id": "physical_server_id_09",
112
+ "name": "physical_server_name_09",
113
+ "uuid": "physical_server_name_09",
114
+ "status": "online",
115
+ "updated_at": "2011-10-18T03:53:24Z",
116
+ "account_id": "physical_server_account_id_09",
117
+ "offering_cpu_cores": 900,
118
+ "offering_memory_size": 900000,
119
+ "arch": "x86_64",
120
+ "hypervisor": "kvm",
121
+ "created_at": "2011-10-18T03:53:24Z"
122
+ },
123
+ {
124
+ "id": "physical_server_id_10",
125
+ "name": "physical_server_name_10",
126
+ "uuid": "physical_server_name_10",
127
+ "status": "registering",
128
+ "updated_at": "2011-10-18T03:53:24Z",
129
+ "account_id": "physical_server_account_id_10",
130
+ "offering_cpu_cores": 100,
131
+ "offering_memory_size": 100000,
132
+ "arch": "x86_64",
133
+ "hypervisor": "kvm",
134
+ "created_at": "2011-10-18T03:53:24Z"
135
+ },
136
+
137
+ {
138
+ "id": "physical_server_id_11",
139
+ "name": "physical_server_name_11",
140
+ "uuid": "physical_server_name_11",
141
+ "status": "online",
142
+ "updated_at": "2011-10-18T03:53:24Z",
143
+ "account_id": "physical_server_account_id_11",
144
+ "offering_cpu_cores": 100,
145
+ "offering_memory_size": 100000,
146
+ "arch": "x86_64",
147
+ "hypervisor": "kvm",
148
+ "created_at": "2011-10-18T03:53:24Z"
149
+ },
150
+ {
151
+ "id": "physical_server_id_12",
152
+ "name": "physical_server_name_12",
153
+ "uuid": "physical_server_name_12",
154
+ "status": "online",
155
+ "updated_at": "2011-10-18T03:53:24Z",
156
+ "account_id": "physical_server_account_id_12",
157
+ "offering_cpu_cores": 200,
158
+ "offering_memory_size": 200000,
159
+ "arch": "x86_64",
160
+ "hypervisor": "kvm",
161
+ "created_at": "2011-10-18T03:53:24Z"
162
+ },
163
+ {
164
+ "id": "physical_server_id_13",
165
+ "name": "physical_server_name_13",
166
+ "uuid": "physical_server_name_13",
167
+ "status": "online",
168
+ "updated_at": "2011-10-18T03:53:24Z",
169
+ "account_id": "physical_server_account_id_13",
170
+ "offering_cpu_cores": 300,
171
+ "offering_memory_size": 300000,
172
+ "arch": "x86_64",
173
+ "hypervisor": "kvm",
174
+ "created_at": "2011-10-18T03:53:24Z"
175
+ },
176
+ {
177
+ "id": "physical_server_id_14",
178
+ "name": "physical_server_name_14",
179
+ "uuid": "physical_server_name_14",
180
+ "status": "online",
181
+ "updated_at": "2011-10-18T03:53:24Z",
182
+ "account_id": "physical_server_account_id_14",
183
+ "offering_cpu_cores": 400,
184
+ "offering_memory_size": 400000,
185
+ "arch": "x86_64",
186
+ "hypervisor": "kvm",
187
+ "created_at": "2011-10-18T03:53:24Z"
188
+ },
189
+ {
190
+ "id": "physical_server_id_15",
191
+ "name": "physical_server_name_15",
192
+ "uuid": "physical_server_name_15",
193
+ "status": "online",
194
+ "updated_at": "2011-10-18T03:53:24Z",
195
+ "account_id": "physical_server_account_id_15",
196
+ "offering_cpu_cores": 500,
197
+ "offering_memory_size": 500000,
198
+ "arch": "x86_64",
199
+ "hypervisor": "kvm",
200
+ "created_at": "2011-10-18T03:53:24Z"
201
+ },
202
+ {
203
+ "id": "physical_server_id_16",
204
+ "name": "physical_server_name_16",
205
+ "uuid": "physical_server_name_16",
206
+ "status": "online",
207
+ "updated_at": "2011-10-18T03:53:24Z",
208
+ "account_id": "physical_server_account_id_16",
209
+ "offering_cpu_cores": 600,
210
+ "offering_memory_size": 600000,
211
+ "arch": "x86_64",
212
+ "hypervisor": "kvm",
213
+ "created_at": "2011-10-18T03:53:24Z"
214
+ },
215
+ {
216
+ "id": "physical_server_id_17",
217
+ "name": "physical_server_name_17",
218
+ "uuid": "physical_server_name_17",
219
+ "status": "online",
220
+ "updated_at": "2011-10-18T03:53:24Z",
221
+ "account_id": "physical_server_account_id_17",
222
+ "offering_cpu_cores": 700,
223
+ "offering_memory_size": 700000,
224
+ "arch": "x86_64",
225
+ "hypervisor": "kvm",
226
+ "created_at": "2011-10-18T03:53:24Z"
227
+ },
228
+ {
229
+ "id": "physical_server_id_18",
230
+ "name": "physical_server_name_18",
231
+ "uuid": "physical_server_name_18",
232
+ "status": "online",
233
+ "updated_at": "2011-10-18T03:53:24Z",
234
+ "account_id": "physical_server_account_id_18",
235
+ "offering_cpu_cores": 800,
236
+ "offering_memory_size": 800000,
237
+ "arch": "x86_64",
238
+ "hypervisor": "kvm",
239
+ "created_at": "2011-10-18T03:53:24Z"
240
+ },
241
+ {
242
+ "id": "physical_server_id_19",
243
+ "name": "physical_server_name_19",
244
+ "uuid": "physical_server_name_19",
245
+ "status": "online",
246
+ "updated_at": "2011-10-18T03:53:24Z",
247
+ "account_id": "physical_server_account_id_19",
248
+ "offering_cpu_cores": 900,
249
+ "offering_memory_size": 900000,
250
+ "arch": "x86_64",
251
+ "hypervisor": "kvm",
252
+ "created_at": "2011-10-18T03:53:24Z"
253
+ },
254
+ {
255
+ "id": "physical_server_id_20",
256
+ "name": "physical_server_name_20",
257
+ "uuid": "physical_server_name_20",
258
+ "status": "registering",
259
+ "updated_at": "2011-10-18T03:53:24Z",
260
+ "account_id": "physical_server_account_id_20",
261
+ "offering_cpu_cores": 100,
262
+ "offering_memory_size": 100000,
263
+ "arch": "x86_64",
264
+ "hypervisor": "kvm",
265
+ "created_at": "2011-10-18T03:53:24Z"
266
+ },
267
+
268
+ {
269
+ "id": "physical_server_id_21",
270
+ "name": "physical_server_name_21",
271
+ "uuid": "physical_server_name_21",
272
+ "status": "online",
273
+ "updated_at": "2011-10-18T03:53:24Z",
274
+ "account_id": "physical_server_account_id_21",
275
+ "offering_cpu_cores": 100,
276
+ "offering_memory_size": 100000,
277
+ "arch": "x86_64",
278
+ "hypervisor": "kvm",
279
+ "created_at": "2011-10-18T03:53:24Z"
280
+ },
281
+ {
282
+ "id": "physical_server_id_22",
283
+ "name": "physical_server_name_22",
284
+ "uuid": "physical_server_name_22",
285
+ "status": "online",
286
+ "updated_at": "2011-10-18T03:53:24Z",
287
+ "account_id": "physical_server_account_id_22",
288
+ "offering_cpu_cores": 200,
289
+ "offering_memory_size": 200000,
290
+ "arch": "x86_64",
291
+ "hypervisor": "kvm",
292
+ "created_at": "2011-10-18T03:53:24Z"
293
+ },
294
+ {
295
+ "id": "physical_server_id_23",
296
+ "name": "physical_server_name_23",
297
+ "uuid": "physical_server_name_23",
298
+ "status": "online",
299
+ "updated_at": "2011-10-18T03:53:24Z",
300
+ "account_id": "physical_server_account_id_23",
301
+ "offering_cpu_cores": 300,
302
+ "offering_memory_size": 300000,
303
+ "arch": "x86_64",
304
+ "hypervisor": "kvm",
305
+ "created_at": "2011-10-18T03:53:24Z"
306
+ },
307
+ {
308
+ "id": "physical_server_id_24",
309
+ "name": "physical_server_name_24",
310
+ "uuid": "physical_server_name_24",
311
+ "status": "online",
312
+ "updated_at": "2011-10-18T03:53:24Z",
313
+ "account_id": "physical_server_account_id_24",
314
+ "offering_cpu_cores": 400,
315
+ "offering_memory_size": 400000,
316
+ "arch": "x86_64",
317
+ "hypervisor": "kvm",
318
+ "created_at": "2011-10-18T03:53:24Z"
319
+ },
320
+ {
321
+ "id": "physical_server_id_25",
322
+ "name": "physical_server_name_25",
323
+ "uuid": "physical_server_name_25",
324
+ "status": "online",
325
+ "updated_at": "2011-10-18T03:53:24Z",
326
+ "account_id": "physical_server_account_id_25",
327
+ "offering_cpu_cores": 500,
328
+ "offering_memory_size": 500000,
329
+ "arch": "x86_64",
330
+ "hypervisor": "kvm",
331
+ "created_at": "2011-10-18T03:53:24Z"
332
+ },
333
+ {
334
+ "id": "physical_server_id_26",
335
+ "name": "physical_server_name_26",
336
+ "uuid": "physical_server_name_26",
337
+ "status": "online",
338
+ "updated_at": "2011-10-18T03:53:24Z",
339
+ "account_id": "physical_server_account_id_26",
340
+ "offering_cpu_cores": 600,
341
+ "offering_memory_size": 600000,
342
+ "arch": "x86_64",
343
+ "hypervisor": "kvm",
344
+ "created_at": "2011-10-18T03:53:24Z"
345
+ },
346
+ {
347
+ "id": "physical_server_id_27",
348
+ "name": "physical_server_name_27",
349
+ "uuid": "physical_server_name_27",
350
+ "status": "online",
351
+ "updated_at": "2011-10-18T03:53:24Z",
352
+ "account_id": "physical_server_account_id_27",
353
+ "offering_cpu_cores": 700,
354
+ "offering_memory_size": 700000,
355
+ "arch": "x86_64",
356
+ "hypervisor": "kvm",
357
+ "created_at": "2011-10-18T03:53:24Z"
358
+ },
359
+ {
360
+ "id": "physical_server_id_28",
361
+ "name": "physical_server_name_28",
362
+ "uuid": "physical_server_name_28",
363
+ "status": "online",
364
+ "updated_at": "2011-10-18T03:53:24Z",
365
+ "account_id": "physical_server_account_id_28",
366
+ "offering_cpu_cores": 800,
367
+ "offering_memory_size": 800000,
368
+ "arch": "x86_64",
369
+ "hypervisor": "kvm",
370
+ "created_at": "2011-10-18T03:53:24Z"
371
+ },
372
+ {
373
+ "id": "physical_server_id_29",
374
+ "name": "physical_server_name_29",
375
+ "uuid": "physical_server_name_29",
376
+ "status": "online",
377
+ "updated_at": "2011-10-18T03:53:24Z",
378
+ "account_id": "physical_server_account_id_29",
379
+ "offering_cpu_cores": 900,
380
+ "offering_memory_size": 900000,
381
+ "arch": "x86_64",
382
+ "hypervisor": "kvm",
383
+ "created_at": "2011-10-18T03:53:24Z"
384
+ },
385
+ {
386
+ "id": "physical_server_id_30",
387
+ "name": "physical_server_name_30",
388
+ "uuid": "physical_server_name_30",
389
+ "status": "registering",
390
+ "updated_at": "2011-10-18T03:53:24Z",
391
+ "account_id": "physical_server_account_id_30",
392
+ "offering_cpu_cores": 100,
393
+ "offering_memory_size": 100000,
394
+ "arch": "x86_64",
395
+ "hypervisor": "kvm",
396
+ "created_at": "2011-10-18T03:53:24Z"
397
+ },
398
+
399
+ {
400
+ "id": "physical_server_id_31",
401
+ "name": "physical_server_name_31",
402
+ "uuid": "physical_server_name_31",
403
+ "status": "online",
404
+ "updated_at": "2011-10-18T03:53:24Z",
405
+ "account_id": "physical_server_account_id_31",
406
+ "offering_cpu_cores": 100,
407
+ "offering_memory_size": 100000,
408
+ "arch": "x86_64",
409
+ "hypervisor": "kvm",
410
+ "created_at": "2011-10-18T03:53:24Z"
411
+ },
412
+ {
413
+ "id": "physical_server_id_32",
414
+ "name": "physical_server_name_32",
415
+ "uuid": "physical_server_name_32",
416
+ "status": "online",
417
+ "updated_at": "2011-10-18T03:53:24Z",
418
+ "account_id": "physical_server_account_id_32",
419
+ "offering_cpu_cores": 200,
420
+ "offering_memory_size": 200000,
421
+ "arch": "x86_64",
422
+ "hypervisor": "kvm",
423
+ "created_at": "2011-10-18T03:53:24Z"
424
+ },
425
+ {
426
+ "id": "physical_server_id_33",
427
+ "name": "physical_server_name_33",
428
+ "uuid": "physical_server_name_33",
429
+ "status": "online",
430
+ "updated_at": "2011-10-18T03:53:24Z",
431
+ "account_id": "physical_server_account_id_33",
432
+ "offering_cpu_cores": 300,
433
+ "offering_memory_size": 300000,
434
+ "arch": "x86_64",
435
+ "hypervisor": "kvm",
436
+ "created_at": "2011-10-18T03:53:24Z"
437
+ },
438
+ {
439
+ "id": "physical_server_id_34",
440
+ "name": "physical_server_name_34",
441
+ "uuid": "physical_server_name_34",
442
+ "status": "online",
443
+ "updated_at": "2011-10-18T03:53:24Z",
444
+ "account_id": "physical_server_account_id_34",
445
+ "offering_cpu_cores": 400,
446
+ "offering_memory_size": 400000,
447
+ "arch": "x86_64",
448
+ "hypervisor": "kvm",
449
+ "created_at": "2011-10-18T03:53:24Z"
450
+ },
451
+ {
452
+ "id": "physical_server_id_35",
453
+ "name": "physical_server_name_35",
454
+ "uuid": "physical_server_name_35",
455
+ "status": "online",
456
+ "updated_at": "2011-10-18T03:53:24Z",
457
+ "account_id": "physical_server_account_id_35",
458
+ "offering_cpu_cores": 500,
459
+ "offering_memory_size": 500000,
460
+ "arch": "x86_64",
461
+ "hypervisor": "kvm",
462
+ "created_at": "2011-10-18T03:53:24Z"
463
+ },
464
+ {
465
+ "id": "physical_server_id_36",
466
+ "name": "physical_server_name_36",
467
+ "uuid": "physical_server_name_36",
468
+ "status": "online",
469
+ "updated_at": "2011-10-18T03:53:24Z",
470
+ "account_id": "physical_server_account_id_36",
471
+ "offering_cpu_cores": 600,
472
+ "offering_memory_size": 600000,
473
+ "arch": "x86_64",
474
+ "hypervisor": "kvm",
475
+ "created_at": "2011-10-18T03:53:24Z"
476
+ },
477
+ {
478
+ "id": "physical_server_id_37",
479
+ "name": "physical_server_name_37",
480
+ "uuid": "physical_server_name_37",
481
+ "status": "online",
482
+ "updated_at": "2011-10-18T03:53:24Z",
483
+ "account_id": "physical_server_account_id_37",
484
+ "offering_cpu_cores": 700,
485
+ "offering_memory_size": 700000,
486
+ "arch": "x86_64",
487
+ "hypervisor": "kvm",
488
+ "created_at": "2011-10-18T03:53:24Z"
489
+ },
490
+ {
491
+ "id": "physical_server_id_38",
492
+ "name": "physical_server_name_38",
493
+ "uuid": "physical_server_name_38",
494
+ "status": "online",
495
+ "updated_at": "2011-10-18T03:53:24Z",
496
+ "account_id": "physical_server_account_id_38",
497
+ "offering_cpu_cores": 800,
498
+ "offering_memory_size": 800000,
499
+ "arch": "x86_64",
500
+ "hypervisor": "kvm",
501
+ "created_at": "2011-10-18T03:53:24Z"
502
+ },
503
+ {
504
+ "id": "physical_server_id_39",
505
+ "name": "physical_server_name_39",
506
+ "uuid": "physical_server_name_39",
507
+ "status": "online",
508
+ "updated_at": "2011-10-18T03:53:24Z",
509
+ "account_id": "physical_server_account_id_39",
510
+ "offering_cpu_cores": 900,
511
+ "offering_memory_size": 900000,
512
+ "arch": "x86_64",
513
+ "hypervisor": "kvm",
514
+ "created_at": "2011-10-18T03:53:24Z"
515
+ },
516
+ {
517
+ "id": "physical_server_id_40",
518
+ "name": "physical_server_name_40",
519
+ "uuid": "physical_server_name_40",
520
+ "status": "registering",
521
+ "updated_at": "2011-10-18T03:53:24Z",
522
+ "account_id": "physical_server_account_id_40",
523
+ "offering_cpu_cores": 100,
524
+ "offering_memory_size": 100000,
525
+ "arch": "x86_64",
526
+ "hypervisor": "kvm",
527
+ "created_at": "2011-10-18T03:53:24Z"
528
+ },
529
+
530
+ {
531
+ "id": "physical_server_id_41",
532
+ "name": "physical_server_name_41",
533
+ "uuid": "physical_server_name_41",
534
+ "status": "online",
535
+ "updated_at": "2011-10-18T03:53:24Z",
536
+ "account_id": "physical_server_account_id_41",
537
+ "offering_cpu_cores": 100,
538
+ "offering_memory_size": 100000,
539
+ "arch": "x86_64",
540
+ "hypervisor": "kvm",
541
+ "created_at": "2011-10-18T03:53:24Z"
542
+ },
543
+ {
544
+ "id": "physical_server_id_42",
545
+ "name": "physical_server_name_42",
546
+ "uuid": "physical_server_name_42",
547
+ "status": "online",
548
+ "updated_at": "2011-10-18T03:53:24Z",
549
+ "account_id": "physical_server_account_id_42",
550
+ "offering_cpu_cores": 200,
551
+ "offering_memory_size": 200000,
552
+ "arch": "x86_64",
553
+ "hypervisor": "kvm",
554
+ "created_at": "2011-10-18T03:53:24Z"
555
+ },
556
+ {
557
+ "id": "physical_server_id_43",
558
+ "name": "physical_server_name_43",
559
+ "uuid": "physical_server_name_43",
560
+ "status": "online",
561
+ "updated_at": "2011-10-18T03:53:24Z",
562
+ "account_id": "physical_server_account_id_43",
563
+ "offering_cpu_cores": 300,
564
+ "offering_memory_size": 300000,
565
+ "arch": "x86_64",
566
+ "hypervisor": "kvm",
567
+ "created_at": "2011-10-18T03:53:24Z"
568
+ },
569
+ {
570
+ "id": "physical_server_id_44",
571
+ "name": "physical_server_name_44",
572
+ "uuid": "physical_server_name_44",
573
+ "status": "online",
574
+ "updated_at": "2011-10-18T03:53:24Z",
575
+ "account_id": "physical_server_account_id_44",
576
+ "offering_cpu_cores": 400,
577
+ "offering_memory_size": 400000,
578
+ "arch": "x86_64",
579
+ "hypervisor": "kvm",
580
+ "created_at": "2011-10-18T03:53:24Z"
581
+ },
582
+ {
583
+ "id": "physical_server_id_45",
584
+ "name": "physical_server_name_45",
585
+ "uuid": "physical_server_name_45",
586
+ "status": "online",
587
+ "updated_at": "2011-10-18T03:53:24Z",
588
+ "account_id": "physical_server_account_id_45",
589
+ "offering_cpu_cores": 500,
590
+ "offering_memory_size": 500000,
591
+ "arch": "x86_64",
592
+ "hypervisor": "kvm",
593
+ "created_at": "2011-10-18T03:53:24Z"
594
+ },
595
+ {
596
+ "id": "physical_server_id_46",
597
+ "name": "physical_server_name_46",
598
+ "uuid": "physical_server_name_46",
599
+ "status": "online",
600
+ "updated_at": "2011-10-18T03:53:24Z",
601
+ "account_id": "physical_server_account_id_46",
602
+ "offering_cpu_cores": 600,
603
+ "offering_memory_size": 600000,
604
+ "arch": "x86_64",
605
+ "hypervisor": "kvm",
606
+ "created_at": "2011-10-18T03:53:24Z"
607
+ },
608
+ {
609
+ "id": "physical_server_id_47",
610
+ "name": "physical_server_name_47",
611
+ "uuid": "physical_server_name_47",
612
+ "status": "online",
613
+ "updated_at": "2011-10-18T03:53:24Z",
614
+ "account_id": "physical_server_account_id_47",
615
+ "offering_cpu_cores": 700,
616
+ "offering_memory_size": 700000,
617
+ "arch": "x86_64",
618
+ "hypervisor": "kvm",
619
+ "created_at": "2011-10-18T03:53:24Z"
620
+ },
621
+ {
622
+ "id": "physical_server_id_48",
623
+ "name": "physical_server_name_48",
624
+ "uuid": "physical_server_name_48",
625
+ "status": "online",
626
+ "updated_at": "2011-10-18T03:53:24Z",
627
+ "account_id": "physical_server_account_id_48",
628
+ "offering_cpu_cores": 800,
629
+ "offering_memory_size": 800000,
630
+ "arch": "x86_64",
631
+ "hypervisor": "kvm",
632
+ "created_at": "2011-10-18T03:53:24Z"
633
+ },
634
+ {
635
+ "id": "physical_server_id_49",
636
+ "name": "physical_server_name_49",
637
+ "uuid": "physical_server_name_49",
638
+ "status": "online",
639
+ "updated_at": "2011-10-18T03:53:24Z",
640
+ "account_id": "physical_server_account_id_49",
641
+ "offering_cpu_cores": 900,
642
+ "offering_memory_size": 900000,
643
+ "arch": "x86_64",
644
+ "hypervisor": "kvm",
645
+ "created_at": "2011-10-18T03:53:24Z"
646
+ },
647
+ {
648
+ "id": "physical_server_id_50",
649
+ "name": "physical_server_name_50",
650
+ "uuid": "physical_server_name_50",
651
+ "status": "registering",
652
+ "updated_at": "2011-10-18T03:53:24Z",
653
+ "account_id": "physical_server_account_id_50",
654
+ "offering_cpu_cores": 100,
655
+ "offering_memory_size": 100000,
656
+ "arch": "x86_64",
657
+ "hypervisor": "kvm",
658
+ "created_at": "2011-10-18T03:53:24Z"
659
+ },
660
+
661
+ {
662
+ "id": "physical_server_id_51",
663
+ "name": "physical_server_name_51",
664
+ "uuid": "physical_server_name_51",
665
+ "status": "online",
666
+ "updated_at": "2011-10-18T03:53:24Z",
667
+ "account_id": "physical_server_account_id_51",
668
+ "offering_cpu_cores": 100,
669
+ "offering_memory_size": 100000,
670
+ "arch": "x86_64",
671
+ "hypervisor": "kvm",
672
+ "created_at": "2011-10-18T03:53:24Z"
673
+ },
674
+ {
675
+ "id": "physical_server_id_52",
676
+ "name": "physical_server_name_52",
677
+ "uuid": "physical_server_name_52",
678
+ "status": "online",
679
+ "updated_at": "2011-10-18T03:53:24Z",
680
+ "account_id": "physical_server_account_id_52",
681
+ "offering_cpu_cores": 200,
682
+ "offering_memory_size": 200000,
683
+ "arch": "x86_64",
684
+ "hypervisor": "kvm",
685
+ "created_at": "2011-10-18T03:53:24Z"
686
+ },
687
+ {
688
+ "id": "physical_server_id_53",
689
+ "name": "physical_server_name_53",
690
+ "uuid": "physical_server_name_53",
691
+ "status": "online",
692
+ "updated_at": "2011-10-18T03:53:24Z",
693
+ "account_id": "physical_server_account_id_53",
694
+ "offering_cpu_cores": 300,
695
+ "offering_memory_size": 300000,
696
+ "arch": "x86_64",
697
+ "hypervisor": "kvm",
698
+ "created_at": "2011-10-18T03:53:24Z"
699
+ },
700
+ {
701
+ "id": "physical_server_id_54",
702
+ "name": "physical_server_name_54",
703
+ "uuid": "physical_server_name_54",
704
+ "status": "online",
705
+ "updated_at": "2011-10-18T03:53:24Z",
706
+ "account_id": "physical_server_account_id_54",
707
+ "offering_cpu_cores": 400,
708
+ "offering_memory_size": 400000,
709
+ "arch": "x86_64",
710
+ "hypervisor": "kvm",
711
+ "created_at": "2011-10-18T03:53:24Z"
712
+ },
713
+ {
714
+ "id": "physical_server_id_55",
715
+ "name": "physical_server_name_55",
716
+ "uuid": "physical_server_name_55",
717
+ "status": "online",
718
+ "updated_at": "2011-10-18T03:53:24Z",
719
+ "account_id": "physical_server_account_id_55",
720
+ "offering_cpu_cores": 500,
721
+ "offering_memory_size": 500000,
722
+ "arch": "x86_64",
723
+ "hypervisor": "kvm",
724
+ "created_at": "2011-10-18T03:53:24Z"
725
+ },
726
+ {
727
+ "id": "physical_server_id_56",
728
+ "name": "physical_server_name_56",
729
+ "uuid": "physical_server_name_56",
730
+ "status": "online",
731
+ "updated_at": "2011-10-18T03:53:24Z",
732
+ "account_id": "physical_server_account_id_56",
733
+ "offering_cpu_cores": 600,
734
+ "offering_memory_size": 600000,
735
+ "arch": "x86_64",
736
+ "hypervisor": "kvm",
737
+ "created_at": "2011-10-18T03:53:24Z"
738
+ },
739
+ {
740
+ "id": "physical_server_id_57",
741
+ "name": "physical_server_name_57",
742
+ "uuid": "physical_server_name_57",
743
+ "status": "online",
744
+ "updated_at": "2011-10-18T03:53:24Z",
745
+ "account_id": "physical_server_account_id_57",
746
+ "offering_cpu_cores": 700,
747
+ "offering_memory_size": 700000,
748
+ "arch": "x86_64",
749
+ "hypervisor": "kvm",
750
+ "created_at": "2011-10-18T03:53:24Z"
751
+ },
752
+ {
753
+ "id": "physical_server_id_58",
754
+ "name": "physical_server_name_58",
755
+ "uuid": "physical_server_name_58",
756
+ "status": "online",
757
+ "updated_at": "2011-10-18T03:53:24Z",
758
+ "account_id": "physical_server_account_id_58",
759
+ "offering_cpu_cores": 800,
760
+ "offering_memory_size": 800000,
761
+ "arch": "x86_64",
762
+ "hypervisor": "kvm",
763
+ "created_at": "2011-10-18T03:53:24Z"
764
+ },
765
+ {
766
+ "id": "physical_server_id_59",
767
+ "name": "physical_server_name_59",
768
+ "uuid": "physical_server_name_59",
769
+ "status": "online",
770
+ "updated_at": "2011-10-18T03:53:24Z",
771
+ "account_id": "physical_server_account_id_59",
772
+ "offering_cpu_cores": 900,
773
+ "offering_memory_size": 900000,
774
+ "arch": "x86_64",
775
+ "hypervisor": "kvm",
776
+ "created_at": "2011-10-18T03:53:24Z"
777
+ },
778
+ {
779
+ "id": "physical_server_id_60",
780
+ "name": "physical_server_name_60",
781
+ "uuid": "physical_server_name_60",
782
+ "status": "registering",
783
+ "updated_at": "2011-10-18T03:53:24Z",
784
+ "account_id": "physical_server_account_id_60",
785
+ "offering_cpu_cores": 100,
786
+ "offering_memory_size": 100000,
787
+ "arch": "x86_64",
788
+ "hypervisor": "kvm",
789
+ "created_at": "2011-10-18T03:53:24Z"
790
+ }
791
+
792
+ ],
793
+ "limit": null
794
+ }
795
+ ]