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,195 @@
1
+ # -*- coding: utf-8 -*-
2
+ require 'spec_helper'
3
+
4
+ describe Tengine::Resource::Server do
5
+
6
+ valid_attributes1 = {
7
+ :name => "server1",
8
+ :provided_id => "server_id1"
9
+ }.freeze
10
+
11
+ [Tengine::Resource::Server, Tengine::Resource::PhysicalServer, Tengine::Resource::VirtualServer].each do |klass|
12
+ context "#{klass.name}#name は必須" do
13
+ it "正常系" do
14
+ klass.delete_all
15
+ credential1 = klass.new(valid_attributes1)
16
+ credential1.valid?.should == true
17
+ end
18
+
19
+ [:name].each do |key|
20
+ it "#{key}なし" do
21
+ attrs = valid_attributes1.dup
22
+ attrs.delete(key)
23
+ credential1 = klass.new(attrs)
24
+ credential1.valid?.should == false
25
+ end
26
+ end
27
+
28
+ end
29
+ end
30
+
31
+ context "nameはベース名として定義される文字列です" do
32
+ it "スラッシュ'/’はリソース識別子で使われるのでnameには使用できません" do
33
+ server1 = Tengine::Resource::Server.new(:name => "foo/bar")
34
+ server1.valid?.should == false
35
+ server1.errors[:name].should == [Tengine::Core::Validation::BASE_NAME.message]
36
+ end
37
+
38
+ it "コロン':'はリソース識別子で使われるのでnameには使用できません" do
39
+ server1 = Tengine::Resource::Server.new(:name => "foo:bar")
40
+ server1.valid?.should == false
41
+ server1.errors[:name].should == [Tengine::Core::Validation::BASE_NAME.message]
42
+ end
43
+ end
44
+
45
+ context "nameはユニーク" do
46
+ [Tengine::Resource::PhysicalServer, Tengine::Resource::VirtualServer].each do |klass|
47
+ context "#{klass.name}#name はユニーク" do
48
+ before do
49
+ Tengine::Resource::Server.delete_all
50
+ @credential1 = klass.create!(valid_attributes1)
51
+ end
52
+
53
+ it "同じ名前で登録されているものが存在する場合エラー" do
54
+ begin
55
+ @credential1 = klass.create!(valid_attributes1)
56
+ rescue Mongoid::Errors::Validations => e
57
+ e.message.should =~ /Name is already taken/
58
+ end
59
+ end
60
+ end
61
+ end
62
+
63
+ context "PhysicalServerかVirutalServerかは名前の一意性に関係ない" do
64
+ before do
65
+ Tengine::Resource::PhysicalServer.delete_all
66
+ Tengine::Resource::VirtualServer.delete_all
67
+ end
68
+
69
+ it "同名のPhysicalServerが先にある場合" do
70
+ name = "server1"
71
+ Tengine::Resource::PhysicalServer.create!(:name => name)
72
+ expect{
73
+ Tengine::Resource::VirtualServer.create!(:name => name)
74
+ }.to raise_error(Mongoid::Errors::Validations,
75
+ "Validation failed - Name is already taken.")
76
+ end
77
+
78
+ it "同名のVirtualServerが先にある場合" do
79
+ name = "server1"
80
+ Tengine::Resource::VirtualServer.create!(:name => name)
81
+ expect{
82
+ Tengine::Resource::PhysicalServer.create!(:name => name)
83
+ }.to raise_error(Mongoid::Errors::Validations,
84
+ "Validation failed - Name is already taken.")
85
+ end
86
+
87
+ end
88
+ end
89
+
90
+ context "nameで検索" do
91
+ before do
92
+ Tengine::Resource::Server.delete_all
93
+ @fixture = GokuAtEc2ApNortheast.new
94
+ @physical1 = @fixture.availability_zone(1)
95
+ @virtual1 = @fixture.hadoop_master_node
96
+ @virtual2 = @fixture.hadoop_slave_node(1)
97
+ end
98
+
99
+ context "見つかる場合" do
100
+ it "find_by_name" do
101
+ found_credential = nil
102
+ lambda{
103
+ found_credential = Tengine::Resource::Server.find_by_name(@physical1.name)
104
+ }.should_not raise_error
105
+ found_credential.should_not be_nil
106
+ found_credential.id.should == @physical1.id
107
+ end
108
+
109
+ it "find_by_name!" do
110
+ found_credential = nil
111
+ lambda{
112
+ found_credential = Tengine::Resource::Server.find_by_name!(@virtual2.name)
113
+ }.should_not raise_error
114
+ found_credential.should_not be_nil
115
+ found_credential.id.should == @virtual2.id
116
+ end
117
+ end
118
+
119
+ context "見つからない場合" do
120
+ it "find_by_name" do
121
+ found_credential = Tengine::Resource::Server.find_by_name("unexist_name").should == nil
122
+ end
123
+
124
+ it "find_by_name!" do
125
+ lambda{
126
+ found_credential = Tengine::Resource::Server.find_by_name!("unexist_name")
127
+ }.should raise_error(Tengine::Core::FindByName::Error)
128
+ end
129
+ end
130
+
131
+ end
132
+
133
+
134
+ context :hostname_or_ipv4 do
135
+ context "何も設定されていない場合" do
136
+ subject{ Tengine::Resource::Server.new }
137
+ its(:hostname_or_ipv4){ should == nil}
138
+ its(:hostname_or_ipv4?){ should == false}
139
+ end
140
+
141
+ base_attrs = {
142
+ :private_ip_address => '10.1.1.1',
143
+ :private_dns_name => 'local-name1',
144
+ :ip_address => '184.1.1.1',
145
+ :dns_name => 'public-name1',
146
+ }
147
+
148
+ context "address_orderの指定なし" do
149
+ [
150
+ [:private_ip_address, :private_dns_name ],
151
+ [:private_dns_name , :ip_address],
152
+ [:ip_address , :dns_name],
153
+ ].each do |(attr1, attr2)|
154
+ context "#{attr1}と#{attr2}を設定した場合#{attr1}が優先されます" do
155
+ subject do
156
+ Tengine::Resource::Server.new(:addresses => {attr1.to_s => base_attrs[attr1], attr2.to_s => base_attrs[attr2]})
157
+ end
158
+ its(:hostname_or_ipv4){ should == base_attrs[attr1]}
159
+ its(:hostname_or_ipv4?){ should == true}
160
+ end
161
+ end
162
+ end
163
+
164
+ context "address_orderの指定あり" do
165
+ [
166
+ [:private_ip_address, :ip_address],
167
+ [:ip_address, :private_dns_name],
168
+ [:private_dns_name, :dns_name],
169
+ ].each do |(attr1, attr2)|
170
+ context "#{attr1}と#{attr2}を設定した場合#{attr1}が優先されます" do
171
+ subject do
172
+ Tengine::Resource::Server.new(
173
+ :address_order => %w[private_ip_address ip_address private_dns_name dns_name],
174
+ :addresses => {attr1.to_s => base_attrs[attr1], attr2.to_s => base_attrs[attr2]})
175
+ end
176
+ its(:hostname_or_ipv4){ should == base_attrs[attr1]}
177
+ its(:hostname_or_ipv4?){ should == true}
178
+ end
179
+ end
180
+ end
181
+
182
+ describe "フィクスチャから" do
183
+ before do
184
+ @fixture = GokuAtEc2ApNortheast.new
185
+ end
186
+ it do
187
+ server1 = @fixture.hadoop_master_node
188
+ server1.hostname_or_ipv4.should == "10.162.153.1"
189
+ end
190
+ end
191
+
192
+ end
193
+
194
+
195
+ end
@@ -0,0 +1,6 @@
1
+ /describe_host_nodes.json
2
+ /describe_images.json
3
+ /describe_instance_specs.json
4
+ /describe_instances.json
5
+ /run_instances.json
6
+ /terminate_instances.json
@@ -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_uuid_01",
8
+ "name": "physical_server_name_01",
9
+ "uuid": "physical_server_uuid_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_uuid_02",
21
+ "name": "physical_server_name_02",
22
+ "uuid": "physical_server_uuid_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_uuid_03",
34
+ "name": "physical_server_name_03",
35
+ "uuid": "physical_server_uuid_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_uuid_04",
47
+ "name": "physical_server_name_04",
48
+ "uuid": "physical_server_uuid_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_uuid_05",
60
+ "name": "physical_server_name_05",
61
+ "uuid": "physical_server_uuid_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_uuid_06",
73
+ "name": "physical_server_name_06",
74
+ "uuid": "physical_server_uuid_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_uuid_07",
86
+ "name": "physical_server_name_07",
87
+ "uuid": "physical_server_uuid_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_uuid_08",
99
+ "name": "physical_server_name_08",
100
+ "uuid": "physical_server_uuid_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_uuid_09",
112
+ "name": "physical_server_name_09",
113
+ "uuid": "physical_server_uuid_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_uuid_10",
125
+ "name": "physical_server_name_10",
126
+ "uuid": "physical_server_uuid_10",
127
+ "status": "offline",
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_uuid_01",
8
+ "name": "physical_server_name_01",
9
+ "uuid": "physical_server_uuid_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_uuid_02",
21
+ "name": "physical_server_name_02",
22
+ "uuid": "physical_server_uuid_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_uuid_03",
34
+ "name": "physical_server_name_03",
35
+ "uuid": "physical_server_uuid_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_uuid_04",
47
+ "name": "physical_server_name_04",
48
+ "uuid": "physical_server_uuid_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_uuid_05",
60
+ "name": "physical_server_name_05",
61
+ "uuid": "physical_server_uuid_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_uuid_06",
73
+ "name": "physical_server_name_06",
74
+ "uuid": "physical_server_uuid_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_uuid_07",
86
+ "name": "physical_server_name_07",
87
+ "uuid": "physical_server_uuid_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_uuid_08",
99
+ "name": "physical_server_name_08",
100
+ "uuid": "physical_server_uuid_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_uuid_09",
112
+ "name": "physical_server_name_09",
113
+ "uuid": "physical_server_uuid_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_uuid_10",
125
+ "name": "physical_server_name_10",
126
+ "uuid": "physical_server_uuid_10",
127
+ "status": "offline",
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_uuid_11",
139
+ "name": "physical_server_name_11",
140
+ "uuid": "physical_server_uuid_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_uuid_12",
152
+ "name": "physical_server_name_12",
153
+ "uuid": "physical_server_uuid_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_uuid_13",
165
+ "name": "physical_server_name_13",
166
+ "uuid": "physical_server_uuid_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_uuid_14",
178
+ "name": "physical_server_name_14",
179
+ "uuid": "physical_server_uuid_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_uuid_15",
191
+ "name": "physical_server_name_15",
192
+ "uuid": "physical_server_uuid_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_uuid_16",
204
+ "name": "physical_server_name_16",
205
+ "uuid": "physical_server_uuid_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_uuid_17",
217
+ "name": "physical_server_name_17",
218
+ "uuid": "physical_server_uuid_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_uuid_18",
230
+ "name": "physical_server_name_18",
231
+ "uuid": "physical_server_uuid_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_uuid_19",
243
+ "name": "physical_server_name_19",
244
+ "uuid": "physical_server_uuid_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_uuid_20",
256
+ "name": "physical_server_name_20",
257
+ "uuid": "physical_server_uuid_20",
258
+ "status": "offline",
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_uuid_21",
270
+ "name": "physical_server_name_21",
271
+ "uuid": "physical_server_uuid_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_uuid_22",
283
+ "name": "physical_server_name_22",
284
+ "uuid": "physical_server_uuid_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_uuid_23",
296
+ "name": "physical_server_name_23",
297
+ "uuid": "physical_server_uuid_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_uuid_24",
309
+ "name": "physical_server_name_24",
310
+ "uuid": "physical_server_uuid_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_uuid_25",
322
+ "name": "physical_server_name_25",
323
+ "uuid": "physical_server_uuid_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_uuid_26",
335
+ "name": "physical_server_name_26",
336
+ "uuid": "physical_server_uuid_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_uuid_27",
348
+ "name": "physical_server_name_27",
349
+ "uuid": "physical_server_uuid_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_uuid_28",
361
+ "name": "physical_server_name_28",
362
+ "uuid": "physical_server_uuid_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_uuid_29",
374
+ "name": "physical_server_name_29",
375
+ "uuid": "physical_server_uuid_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_uuid_30",
387
+ "name": "physical_server_name_30",
388
+ "uuid": "physical_server_uuid_30",
389
+ "status": "offline",
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_uuid_31",
401
+ "name": "physical_server_name_31",
402
+ "uuid": "physical_server_uuid_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_uuid_32",
414
+ "name": "physical_server_name_32",
415
+ "uuid": "physical_server_uuid_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_uuid_33",
427
+ "name": "physical_server_name_33",
428
+ "uuid": "physical_server_uuid_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_uuid_34",
440
+ "name": "physical_server_name_34",
441
+ "uuid": "physical_server_uuid_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_uuid_35",
453
+ "name": "physical_server_name_35",
454
+ "uuid": "physical_server_uuid_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_uuid_36",
466
+ "name": "physical_server_name_36",
467
+ "uuid": "physical_server_uuid_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_uuid_37",
479
+ "name": "physical_server_name_37",
480
+ "uuid": "physical_server_uuid_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_uuid_38",
492
+ "name": "physical_server_name_38",
493
+ "uuid": "physical_server_uuid_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_uuid_39",
505
+ "name": "physical_server_name_39",
506
+ "uuid": "physical_server_uuid_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_uuid_40",
518
+ "name": "physical_server_name_40",
519
+ "uuid": "physical_server_uuid_40",
520
+ "status": "offline",
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_uuid_41",
532
+ "name": "physical_server_name_41",
533
+ "uuid": "physical_server_uuid_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_uuid_42",
545
+ "name": "physical_server_name_42",
546
+ "uuid": "physical_server_uuid_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_uuid_43",
558
+ "name": "physical_server_name_43",
559
+ "uuid": "physical_server_uuid_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_uuid_44",
571
+ "name": "physical_server_name_44",
572
+ "uuid": "physical_server_uuid_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_uuid_45",
584
+ "name": "physical_server_name_45",
585
+ "uuid": "physical_server_uuid_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_uuid_46",
597
+ "name": "physical_server_name_46",
598
+ "uuid": "physical_server_uuid_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_uuid_47",
610
+ "name": "physical_server_name_47",
611
+ "uuid": "physical_server_uuid_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_uuid_48",
623
+ "name": "physical_server_name_48",
624
+ "uuid": "physical_server_uuid_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_uuid_49",
636
+ "name": "physical_server_name_49",
637
+ "uuid": "physical_server_uuid_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_uuid_50",
649
+ "name": "physical_server_name_50",
650
+ "uuid": "physical_server_uuid_50",
651
+ "status": "offline",
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_uuid_51",
663
+ "name": "physical_server_name_51",
664
+ "uuid": "physical_server_uuid_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_uuid_52",
676
+ "name": "physical_server_name_52",
677
+ "uuid": "physical_server_uuid_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_uuid_53",
689
+ "name": "physical_server_name_53",
690
+ "uuid": "physical_server_uuid_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_uuid_54",
702
+ "name": "physical_server_name_54",
703
+ "uuid": "physical_server_uuid_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_uuid_55",
715
+ "name": "physical_server_name_55",
716
+ "uuid": "physical_server_uuid_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_uuid_56",
728
+ "name": "physical_server_name_56",
729
+ "uuid": "physical_server_uuid_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_uuid_57",
741
+ "name": "physical_server_name_57",
742
+ "uuid": "physical_server_uuid_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_uuid_58",
754
+ "name": "physical_server_name_58",
755
+ "uuid": "physical_server_uuid_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_uuid_59",
767
+ "name": "physical_server_name_59",
768
+ "uuid": "physical_server_uuid_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_uuid_60",
780
+ "name": "physical_server_name_60",
781
+ "uuid": "physical_server_uuid_60",
782
+ "status": "offline",
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
+ ]