deltacloud-client-vm 1.1.4.2 → 1.1.4.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +176 -0
  3. data/NOTICE +8 -0
  4. data/README.md +73 -0
  5. data/Rakefile +122 -0
  6. data/deltacloud-client-vm.gemspec +24 -0
  7. data/lib/deltacloud_vm/client.rb +79 -0
  8. data/lib/deltacloud_vm/client/base_error.rb +80 -0
  9. data/lib/deltacloud_vm/client/connection.rb +139 -0
  10. data/lib/deltacloud_vm/client/helpers/model_helper.rb +69 -0
  11. data/lib/deltacloud_vm/client/helpers/property_helper.rb +103 -0
  12. data/lib/deltacloud_vm/client/helpers/xml_helper.rb +33 -0
  13. data/lib/deltacloud_vm/client/methods.rb +33 -0
  14. data/lib/deltacloud_vm/client/methods/address.rb +67 -0
  15. data/lib/deltacloud_vm/client/methods/api.rb +96 -0
  16. data/lib/deltacloud_vm/client/methods/backward_compatiblity.rb +72 -0
  17. data/lib/deltacloud_vm/client/methods/blob.rb +91 -0
  18. data/lib/deltacloud_vm/client/methods/bucket.rb +55 -0
  19. data/lib/deltacloud_vm/client/methods/common.rb +46 -0
  20. data/lib/deltacloud_vm/client/methods/driver.rb +53 -0
  21. data/lib/deltacloud_vm/client/methods/firewall.rb +67 -0
  22. data/lib/deltacloud_vm/client/methods/hardware_profile.rb +41 -0
  23. data/lib/deltacloud_vm/client/methods/image.rb +61 -0
  24. data/lib/deltacloud_vm/client/methods/instance.rb +141 -0
  25. data/lib/deltacloud_vm/client/methods/instance_state.rb +41 -0
  26. data/lib/deltacloud_vm/client/methods/key.rb +58 -0
  27. data/lib/deltacloud_vm/client/methods/load_balancer.rb +96 -0
  28. data/lib/deltacloud_vm/client/methods/metric.rb +54 -0
  29. data/lib/deltacloud_vm/client/methods/realm.rb +42 -0
  30. data/lib/deltacloud_vm/client/methods/storage_snapshot.rb +61 -0
  31. data/lib/deltacloud_vm/client/methods/storage_volume.rb +94 -0
  32. data/lib/deltacloud_vm/client/models.rb +32 -0
  33. data/lib/deltacloud_vm/client/models/address.rb +57 -0
  34. data/lib/deltacloud_vm/client/models/base.rb +153 -0
  35. data/lib/deltacloud_vm/client/models/blob.rb +56 -0
  36. data/lib/deltacloud_vm/client/models/bucket.rb +65 -0
  37. data/lib/deltacloud_vm/client/models/driver.rb +87 -0
  38. data/lib/deltacloud_vm/client/models/firewall.rb +64 -0
  39. data/lib/deltacloud_vm/client/models/hardware_profile.rb +68 -0
  40. data/lib/deltacloud_vm/client/models/image.rb +60 -0
  41. data/lib/deltacloud_vm/client/models/instance.rb +142 -0
  42. data/lib/deltacloud_vm/client/models/instance_address.rb +40 -0
  43. data/lib/deltacloud_vm/client/models/instance_state.rb +52 -0
  44. data/lib/deltacloud_vm/client/models/key.rb +52 -0
  45. data/lib/deltacloud_vm/client/models/load_balancer.rb +55 -0
  46. data/lib/deltacloud_vm/client/models/metric.rb +72 -0
  47. data/lib/deltacloud_vm/client/models/realm.rb +29 -0
  48. data/lib/deltacloud_vm/client/models/storage_snapshot.rb +54 -0
  49. data/lib/deltacloud_vm/client/models/storage_volume.rb +96 -0
  50. data/lib/deltacloud_vm/core_ext.rb +19 -0
  51. data/lib/deltacloud_vm/core_ext/element.rb +32 -0
  52. data/lib/deltacloud_vm/core_ext/fixnum.rb +30 -0
  53. data/lib/deltacloud_vm/core_ext/nil.rb +22 -0
  54. data/lib/deltacloud_vm/core_ext/string.rb +49 -0
  55. data/lib/deltacloud_vm/error_response.rb +93 -0
  56. data/tests/client/client_test.rb +51 -0
  57. data/tests/client/connection_test.rb +77 -0
  58. data/tests/core_ext/element_test.rb +40 -0
  59. data/tests/core_ext/fixnum_test.rb +35 -0
  60. data/tests/core_ext/nil.rb +27 -0
  61. data/tests/core_ext/string_test.rb +47 -0
  62. data/tests/fixtures/instances_cleanup.yml +681 -0
  63. data/tests/fixtures/test_0001_connects_to_Deltacloud_API.yml +60 -0
  64. data/tests/fixtures/test_0001_support_cpu.yml +444 -0
  65. data/tests/fixtures/test_0001_support_original_body.yml +116 -0
  66. data/tests/fixtures/test_0001_supports_addresses.yml +178 -0
  67. data/tests/fixtures/test_0001_supports_api_host.yml +60 -0
  68. data/tests/fixtures/test_0001_supports_attached_.yml +282 -0
  69. data/tests/fixtures/test_0001_supports_blobs.yml +475 -0
  70. data/tests/fixtures/test_0001_supports_bucket.yml +200 -0
  71. data/tests/fixtures/test_0001_supports_buckets.yml +160 -0
  72. data/tests/fixtures/test_0001_supports_drivers.yml +202 -0
  73. data/tests/fixtures/test_0001_supports_firewalls.yml +399 -0
  74. data/tests/fixtures/test_0001_supports_hardware_profiles.yml +262 -0
  75. data/tests/fixtures/test_0001_supports_images.yml +224 -0
  76. data/tests/fixtures/test_0001_supports_instance_states.yml +156 -0
  77. data/tests/fixtures/test_0001_supports_instances.yml +486 -0
  78. data/tests/fixtures/test_0001_supports_keys.yml +198 -0
  79. data/tests/fixtures/test_0001_supports_path.yml +60 -0
  80. data/tests/fixtures/test_0001_supports_realms.yml +152 -0
  81. data/tests/fixtures/test_0001_supports_storage_snapshots.yml +164 -0
  82. data/tests/fixtures/test_0001_supports_storage_volumes.yml +176 -0
  83. data/tests/fixtures/test_0001_supports_to_get_providers.yml +410 -0
  84. data/tests/fixtures/test_0002_support_blob.yml +148 -0
  85. data/tests/fixtures/test_0002_support_instance_state.yml +204 -0
  86. data/tests/fixtures/test_0002_support_memory.yml +444 -0
  87. data/tests/fixtures/test_0002_support_on_Provider.yml +130 -0
  88. data/tests/fixtures/test_0002_supports_api_port.yml +60 -0
  89. data/tests/fixtures/test_0002_supports_api_uri.yml +60 -0
  90. data/tests/fixtures/test_0002_supports_driver.yml +219 -0
  91. data/tests/fixtures/test_0002_supports_extract_xml_body_using_faraday_connection.yml +117 -0
  92. data/tests/fixtures/test_0002_supports_filtering_addresses_by_id_param.yml +156 -0
  93. data/tests/fixtures/test_0002_supports_filtering_buckets_by_id_param.yml +156 -0
  94. data/tests/fixtures/test_0002_supports_filtering_firewalls_by_id_param.yml +207 -0
  95. data/tests/fixtures/test_0002_supports_filtering_hardware_profiles_by_id_param.yml +158 -0
  96. data/tests/fixtures/test_0002_supports_filtering_images_by_id_param.yml +165 -0
  97. data/tests/fixtures/test_0002_supports_filtering_instances_by_id_param.yml +164 -0
  98. data/tests/fixtures/test_0002_supports_filtering_keys_by_id_param.yml +178 -0
  99. data/tests/fixtures/test_0002_supports_filtering_realms_by_id.yml +104 -0
  100. data/tests/fixtures/test_0002_supports_filtering_storage_snapshots_by_id_param.yml +155 -0
  101. data/tests/fixtures/test_0002_supports_filtering_storage_volumes_by_id_param.yml +157 -0
  102. data/tests/fixtures/test_0002_supports_hardware_profiles.yml +262 -0
  103. data/tests/fixtures/test_0002_supports_is_compatible_.yml +116 -0
  104. data/tests/fixtures/test_0002_supports_snapshot_.yml +202 -0
  105. data/tests/fixtures/test_0002_supports_version.yml +60 -0
  106. data/tests/fixtures/test_0003_caches_the_API_entrypoint.yml +60 -0
  107. data/tests/fixtures/test_0003_support_address.yml +197 -0
  108. data/tests/fixtures/test_0003_support_bucket.yml +198 -0
  109. data/tests/fixtures/test_0003_support_create_blob.yml +105 -0
  110. data/tests/fixtures/test_0003_support_create_blob_and_destroy_blob.yml +138 -0
  111. data/tests/fixtures/test_0003_support_firewall.yml +768 -0
  112. data/tests/fixtures/test_0003_support_hardware_profile.yml +199 -0
  113. data/tests/fixtures/test_0003_support_image.yml +207 -0
  114. data/tests/fixtures/test_0003_support_instance.yml +206 -0
  115. data/tests/fixtures/test_0003_support_key.yml +220 -0
  116. data/tests/fixtures/test_0003_support_realm.yml +195 -0
  117. data/tests/fixtures/test_0003_support_storage.yml +444 -0
  118. data/tests/fixtures/test_0003_support_storage_snapshot.yml +196 -0
  119. data/tests/fixtures/test_0003_support_storage_volume.yml +197 -0
  120. data/tests/fixtures/test_0003_support_to_change_driver_with_Client.yml +72 -0
  121. data/tests/fixtures/test_0003_supports_connect.yml +60 -0
  122. data/tests/fixtures/test_0003_supports_extract_xml_body_using_nokogiri_document.yml +117 -0
  123. data/tests/fixtures/test_0003_supports_instance.yml +396 -0
  124. data/tests/fixtures/test_0003_supports_is_compatible_.yml +116 -0
  125. data/tests/fixtures/test_0003_supports_lunch_image.yml +367 -0
  126. data/tests/fixtures/test_0003_supports_providers.yml +102 -0
  127. data/tests/fixtures/test_0003_supports_version.yml +60 -0
  128. data/tests/fixtures/test_0004_support_architecture.yml +444 -0
  129. data/tests/fixtures/test_0004_support_create_address.yml +197 -0
  130. data/tests/fixtures/test_0004_support_create_blob_and_destroy_blob_with_meta_params.yml +139 -0
  131. data/tests/fixtures/test_0004_support_create_bucket.yml +180 -0
  132. data/tests/fixtures/test_0004_support_create_bucket_and_destroy_bucket.yml +180 -0
  133. data/tests/fixtures/test_0004_support_create_firewall_and_destroy_firewall.yml +496 -0
  134. data/tests/fixtures/test_0004_support_create_image_and_destroy_image.yml +1527 -0
  135. data/tests/fixtures/test_0004_support_create_instance.yml +115 -0
  136. data/tests/fixtures/test_0004_support_create_key_and_destroy_key.yml +206 -0
  137. data/tests/fixtures/test_0004_support_create_volume.yml +105 -0
  138. data/tests/fixtures/test_0004_support_create_volume_and_destroy_volume.yml +181 -0
  139. data/tests/fixtures/test_0004_support_to_test_of_valid_DC_connection.yml +60 -0
  140. data/tests/fixtures/test_0004_supports_current_driver.yml +60 -0
  141. data/tests/fixtures/test_0004_supports_extract_xml_body_using_nokogiri_element.yml +117 -0
  142. data/tests/fixtures/test_0004_supports_lunch_image.yml +312 -0
  143. data/tests/fixtures/test_0004_supports_valid_credentials_.yml +215 -0
  144. data/tests/fixtures/test_0004_supports_with_config.yml +129 -0
  145. data/tests/fixtures/test_0005_support_attach_storage_volume.yml +102 -0
  146. data/tests/fixtures/test_0005_support_attach_storage_volume_and_detach_storage_volume.yml +142 -0
  147. data/tests/fixtures/test_0005_support_create_instance_with_hwp_id.yml +115 -0
  148. data/tests/fixtures/test_0005_support_opaque_.yml +152 -0
  149. data/tests/fixtures/test_0005_supports_current_provider.yml +134 -0
  150. data/tests/fixtures/test_0005_supports_id.yml +116 -0
  151. data/tests/fixtures/test_0005_supports_switching_drivers_per_instance.yml +129 -0
  152. data/tests/fixtures/test_0005_supports_use_driver.yml +60 -0
  153. data/tests/fixtures/test_0006_support_create_instance_with_realm_id.yml +115 -0
  154. data/tests/fixtures/test_0006_supports_discovered_.yml +60 -0
  155. data/tests/fixtures/test_0006_supports_supported_collections.yml +60 -0
  156. data/tests/fixtures/test_0006_supports_switching_providers_per_instance.yml +208 -0
  157. data/tests/fixtures/test_0007_support_create_instance_with_name.yml +115 -0
  158. data/tests/fixtures/test_0007_support_switching_provider_without_credentials.yml +208 -0
  159. data/tests/fixtures/test_0007_supports_support_.yml +60 -0
  160. data/tests/fixtures/test_0007_supports_valid_credentials_on_class.yml +370 -0
  161. data/tests/fixtures/test_0008_support_stop_instance.yml +166 -0
  162. data/tests/fixtures/test_0008_supports_must_support_.yml +60 -0
  163. data/tests/fixtures/test_0009_support_start_instance.yml +217 -0
  164. data/tests/fixtures/test_0009_supports_features.yml +60 -0
  165. data/tests/fixtures/test_0010_support_reboot_instance.yml +166 -0
  166. data/tests/fixtures/test_0010_supports_feature_.yml +60 -0
  167. data/tests/helpers/model_test.rb +33 -0
  168. data/tests/helpers/xml_test.rb +56 -0
  169. data/tests/methods/address_test.rb +64 -0
  170. data/tests/methods/api_test.rb +97 -0
  171. data/tests/methods/backward_compatibility_test.rb +87 -0
  172. data/tests/methods/blob_test.rb +64 -0
  173. data/tests/methods/bucket_test.rb +62 -0
  174. data/tests/methods/driver_test.rb +48 -0
  175. data/tests/methods/firewall_test.rb +84 -0
  176. data/tests/methods/hardware_profile_test.rb +53 -0
  177. data/tests/methods/image_test.rb +64 -0
  178. data/tests/methods/instance_state_test.rb +43 -0
  179. data/tests/methods/instance_test.rb +126 -0
  180. data/tests/methods/key_test.rb +63 -0
  181. data/tests/methods/realm_test.rb +50 -0
  182. data/tests/methods/storage_snapshot_test.rb +53 -0
  183. data/tests/methods/storage_volume_test.rb +81 -0
  184. data/tests/models/blob_test.rb +40 -0
  185. data/tests/models/bucket_test.rb +37 -0
  186. data/tests/models/driver_test.rb +42 -0
  187. data/tests/models/hardware_profile_test.rb +80 -0
  188. data/tests/models/image_test.rb +65 -0
  189. data/tests/models/storage_volume_test.rb +52 -0
  190. data/tests/test_helper.rb +64 -0
  191. metadata +191 -2
@@ -0,0 +1,102 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3001/api
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/xml
12
+ Authorization:
13
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
14
+ User-Agent:
15
+ - Faraday v0.8.6
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ content-type:
22
+ - application/xml
23
+ server:
24
+ - Apache-DeltacloudVM/1.1.1
25
+ x-deltacloud-driver:
26
+ - mock
27
+ content-length:
28
+ - '1368'
29
+ x-content-type-options:
30
+ - nosniff
31
+ etag:
32
+ - e43d25244dc2b8ce1da6fa91131507ee
33
+ cache-control:
34
+ - max-age=0, private, must-revalidate
35
+ date:
36
+ - Wed, 06 Mar 2013 08:56:17 GMT
37
+ connection:
38
+ - close
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ! "<api driver='mock' version='1.1.1'>\n <link href='http://localhost:3001/api/instance_states'
42
+ rel='instance_states'>\n </link>\n <link href='http://localhost:3001/api/storage_volumes'
43
+ rel='storage_volumes'>\n </link>\n <link href='http://localhost:3001/api/metrics'
44
+ rel='metrics'>\n </link>\n <link href='http://localhost:3001/api/hardware_profiles'
45
+ rel='hardware_profiles'>\n </link>\n <link href='http://localhost:3001/api/instances'
46
+ rel='instances'>\n <feature name='metrics' rel='create'>\n <param
47
+ name='metrics' />\n </feature>\n <feature name='realm_filter' rel='index'>\n
48
+ \ <param name='realm_id' />\n </feature>\n <feature name='user_name'
49
+ rel='create'>\n <param name='name' />\n </feature>\n <feature name='authentication_key'
50
+ rel='create'>\n <param name='keyname' />\n </feature>\n </link>\n
51
+ \ <link href='http://localhost:3001/api/realms' rel='realms'>\n </link>\n
52
+ \ <link href='http://localhost:3001/api/storage_snapshots' rel='storage_snapshots'>\n
53
+ \ </link>\n <link href='http://localhost:3001/api/images' rel='images'>\n
54
+ \ </link>\n <link href='http://localhost:3001/api/addresses' rel='addresses'>\n
55
+ \ </link>\n <link href='http://localhost:3001/api/drivers' rel='drivers'>\n
56
+ \ </link>\n <link href='http://localhost:3001/api/buckets' rel='buckets'>\n
57
+ \ </link>\n <link href='http://localhost:3001/api/keys' rel='keys'>\n </link>\n</api>\n"
58
+ http_version:
59
+ recorded_at: Wed, 06 Mar 2013 08:56:17 GMT
60
+ - request:
61
+ method: get
62
+ uri: http://localhost:3001/api/drivers/mock
63
+ body:
64
+ encoding: US-ASCII
65
+ string: ''
66
+ headers:
67
+ Accept:
68
+ - application/xml
69
+ Authorization:
70
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
71
+ User-Agent:
72
+ - Faraday v0.8.6
73
+ response:
74
+ status:
75
+ code: 200
76
+ message:
77
+ headers:
78
+ content-type:
79
+ - application/xml
80
+ server:
81
+ - Apache-DeltacloudVM/1.1.1
82
+ x-deltacloud-driver:
83
+ - mock
84
+ content-length:
85
+ - '95'
86
+ x-content-type-options:
87
+ - nosniff
88
+ etag:
89
+ - 2568f57f6d525b872587e395508183e8
90
+ cache-control:
91
+ - max-age=0, private, must-revalidate
92
+ date:
93
+ - Wed, 06 Mar 2013 08:56:17 GMT
94
+ connection:
95
+ - close
96
+ body:
97
+ encoding: US-ASCII
98
+ string: ! "<driver href='http://localhost:3001/api/drivers/mock' id='mock'>\n
99
+ \ <name>Mock</name>\n</driver>\n"
100
+ http_version:
101
+ recorded_at: Wed, 06 Mar 2013 08:56:17 GMT
102
+ recorded_with: VCR 2.4.0
@@ -0,0 +1,60 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3001/api
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/xml
12
+ Authorization:
13
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
14
+ User-Agent:
15
+ - Faraday v0.8.6
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ content-type:
22
+ - application/xml
23
+ server:
24
+ - Apache-DeltacloudVM/1.1.1
25
+ x-deltacloud-driver:
26
+ - mock
27
+ content-length:
28
+ - '1368'
29
+ x-content-type-options:
30
+ - nosniff
31
+ etag:
32
+ - e43d25244dc2b8ce1da6fa91131507ee
33
+ cache-control:
34
+ - max-age=0, private, must-revalidate
35
+ date:
36
+ - Wed, 06 Mar 2013 08:56:16 GMT
37
+ connection:
38
+ - close
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ! "<api driver='mock' version='1.1.1'>\n <link href='http://localhost:3001/api/instance_states'
42
+ rel='instance_states'>\n </link>\n <link href='http://localhost:3001/api/storage_volumes'
43
+ rel='storage_volumes'>\n </link>\n <link href='http://localhost:3001/api/metrics'
44
+ rel='metrics'>\n </link>\n <link href='http://localhost:3001/api/hardware_profiles'
45
+ rel='hardware_profiles'>\n </link>\n <link href='http://localhost:3001/api/instances'
46
+ rel='instances'>\n <feature name='metrics' rel='create'>\n <param
47
+ name='metrics' />\n </feature>\n <feature name='realm_filter' rel='index'>\n
48
+ \ <param name='realm_id' />\n </feature>\n <feature name='user_name'
49
+ rel='create'>\n <param name='name' />\n </feature>\n <feature name='authentication_key'
50
+ rel='create'>\n <param name='keyname' />\n </feature>\n </link>\n
51
+ \ <link href='http://localhost:3001/api/realms' rel='realms'>\n </link>\n
52
+ \ <link href='http://localhost:3001/api/storage_snapshots' rel='storage_snapshots'>\n
53
+ \ </link>\n <link href='http://localhost:3001/api/images' rel='images'>\n
54
+ \ </link>\n <link href='http://localhost:3001/api/addresses' rel='addresses'>\n
55
+ \ </link>\n <link href='http://localhost:3001/api/drivers' rel='drivers'>\n
56
+ \ </link>\n <link href='http://localhost:3001/api/buckets' rel='buckets'>\n
57
+ \ </link>\n <link href='http://localhost:3001/api/keys' rel='keys'>\n </link>\n</api>\n"
58
+ http_version:
59
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
60
+ recorded_with: VCR 2.4.0
@@ -0,0 +1,444 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3001/api
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/xml
12
+ Authorization:
13
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
14
+ User-Agent:
15
+ - Faraday v0.8.6
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ content-type:
22
+ - application/xml
23
+ server:
24
+ - Apache-DeltacloudVM/1.1.1
25
+ x-deltacloud-driver:
26
+ - mock
27
+ content-length:
28
+ - '1368'
29
+ x-content-type-options:
30
+ - nosniff
31
+ etag:
32
+ - e43d25244dc2b8ce1da6fa91131507ee
33
+ cache-control:
34
+ - max-age=0, private, must-revalidate
35
+ date:
36
+ - Wed, 06 Mar 2013 15:47:53 GMT
37
+ connection:
38
+ - close
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ! "<api driver='mock' version='1.1.1'>\n <link href='http://localhost:3001/api/instance_states'
42
+ rel='instance_states'>\n </link>\n <link href='http://localhost:3001/api/storage_volumes'
43
+ rel='storage_volumes'>\n </link>\n <link href='http://localhost:3001/api/metrics'
44
+ rel='metrics'>\n </link>\n <link href='http://localhost:3001/api/hardware_profiles'
45
+ rel='hardware_profiles'>\n </link>\n <link href='http://localhost:3001/api/instances'
46
+ rel='instances'>\n <feature name='metrics' rel='create'>\n <param
47
+ name='metrics' />\n </feature>\n <feature name='realm_filter' rel='index'>\n
48
+ \ <param name='realm_id' />\n </feature>\n <feature name='user_name'
49
+ rel='create'>\n <param name='name' />\n </feature>\n <feature name='authentication_key'
50
+ rel='create'>\n <param name='keyname' />\n </feature>\n </link>\n
51
+ \ <link href='http://localhost:3001/api/realms' rel='realms'>\n </link>\n
52
+ \ <link href='http://localhost:3001/api/storage_snapshots' rel='storage_snapshots'>\n
53
+ \ </link>\n <link href='http://localhost:3001/api/images' rel='images'>\n
54
+ \ </link>\n <link href='http://localhost:3001/api/addresses' rel='addresses'>\n
55
+ \ </link>\n <link href='http://localhost:3001/api/drivers' rel='drivers'>\n
56
+ \ </link>\n <link href='http://localhost:3001/api/buckets' rel='buckets'>\n
57
+ \ </link>\n <link href='http://localhost:3001/api/keys' rel='keys'>\n </link>\n</api>\n"
58
+ http_version:
59
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
60
+ - request:
61
+ method: get
62
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
63
+ body:
64
+ encoding: US-ASCII
65
+ string: ''
66
+ headers:
67
+ Accept:
68
+ - application/xml
69
+ Authorization:
70
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
71
+ User-Agent:
72
+ - Faraday v0.8.6
73
+ response:
74
+ status:
75
+ code: 200
76
+ message:
77
+ headers:
78
+ content-type:
79
+ - application/xml
80
+ x-backend-runtime:
81
+ - '0.00010967254638671875'
82
+ server:
83
+ - Apache-DeltacloudVM/1.1.1
84
+ x-deltacloud-driver:
85
+ - mock
86
+ content-length:
87
+ - '465'
88
+ x-content-type-options:
89
+ - nosniff
90
+ etag:
91
+ - 28c52ced85d102f8d21eafb861582994
92
+ cache-control:
93
+ - max-age=0, private, must-revalidate
94
+ date:
95
+ - Wed, 06 Mar 2013 15:47:53 GMT
96
+ connection:
97
+ - close
98
+ body:
99
+ encoding: US-ASCII
100
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
101
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
102
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
103
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
104
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
105
+ value='i386' />\n</hardware_profile>\n"
106
+ http_version:
107
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
108
+ - request:
109
+ method: get
110
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
111
+ body:
112
+ encoding: US-ASCII
113
+ string: ''
114
+ headers:
115
+ Accept:
116
+ - application/xml
117
+ Authorization:
118
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
119
+ User-Agent:
120
+ - Faraday v0.8.6
121
+ response:
122
+ status:
123
+ code: 200
124
+ message:
125
+ headers:
126
+ content-type:
127
+ - application/xml
128
+ x-backend-runtime:
129
+ - '0.00014019012451171875'
130
+ server:
131
+ - Apache-DeltacloudVM/1.1.1
132
+ x-deltacloud-driver:
133
+ - mock
134
+ content-length:
135
+ - '465'
136
+ x-content-type-options:
137
+ - nosniff
138
+ etag:
139
+ - 28c52ced85d102f8d21eafb861582994
140
+ cache-control:
141
+ - max-age=0, private, must-revalidate
142
+ date:
143
+ - Wed, 06 Mar 2013 15:47:53 GMT
144
+ connection:
145
+ - close
146
+ body:
147
+ encoding: US-ASCII
148
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
149
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
150
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
151
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
152
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
153
+ value='i386' />\n</hardware_profile>\n"
154
+ http_version:
155
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
156
+ - request:
157
+ method: get
158
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
159
+ body:
160
+ encoding: US-ASCII
161
+ string: ''
162
+ headers:
163
+ Accept:
164
+ - application/xml
165
+ Authorization:
166
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
167
+ User-Agent:
168
+ - Faraday v0.8.6
169
+ response:
170
+ status:
171
+ code: 200
172
+ message:
173
+ headers:
174
+ content-type:
175
+ - application/xml
176
+ x-backend-runtime:
177
+ - '0.00012612342834472656'
178
+ server:
179
+ - Apache-DeltacloudVM/1.1.1
180
+ x-deltacloud-driver:
181
+ - mock
182
+ content-length:
183
+ - '465'
184
+ x-content-type-options:
185
+ - nosniff
186
+ etag:
187
+ - 28c52ced85d102f8d21eafb861582994
188
+ cache-control:
189
+ - max-age=0, private, must-revalidate
190
+ date:
191
+ - Wed, 06 Mar 2013 15:47:53 GMT
192
+ connection:
193
+ - close
194
+ body:
195
+ encoding: US-ASCII
196
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
197
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
198
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
199
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
200
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
201
+ value='i386' />\n</hardware_profile>\n"
202
+ http_version:
203
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
204
+ - request:
205
+ method: get
206
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
207
+ body:
208
+ encoding: US-ASCII
209
+ string: ''
210
+ headers:
211
+ Accept:
212
+ - application/xml
213
+ Authorization:
214
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
215
+ User-Agent:
216
+ - Faraday v0.8.6
217
+ response:
218
+ status:
219
+ code: 200
220
+ message:
221
+ headers:
222
+ content-type:
223
+ - application/xml
224
+ x-backend-runtime:
225
+ - '7.295608520507812e-05'
226
+ server:
227
+ - Apache-DeltacloudVM/1.1.1
228
+ x-deltacloud-driver:
229
+ - mock
230
+ content-length:
231
+ - '465'
232
+ x-content-type-options:
233
+ - nosniff
234
+ etag:
235
+ - 28c52ced85d102f8d21eafb861582994
236
+ cache-control:
237
+ - max-age=0, private, must-revalidate
238
+ date:
239
+ - Wed, 06 Mar 2013 15:47:53 GMT
240
+ connection:
241
+ - close
242
+ body:
243
+ encoding: US-ASCII
244
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
245
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
246
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
247
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
248
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
249
+ value='i386' />\n</hardware_profile>\n"
250
+ http_version:
251
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
252
+ - request:
253
+ method: get
254
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
255
+ body:
256
+ encoding: US-ASCII
257
+ string: ''
258
+ headers:
259
+ Accept:
260
+ - application/xml
261
+ Authorization:
262
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
263
+ User-Agent:
264
+ - Faraday v0.8.6
265
+ response:
266
+ status:
267
+ code: 200
268
+ message:
269
+ headers:
270
+ content-type:
271
+ - application/xml
272
+ x-backend-runtime:
273
+ - '0.00015091896057128906'
274
+ server:
275
+ - Apache-DeltacloudVM/1.1.1
276
+ x-deltacloud-driver:
277
+ - mock
278
+ content-length:
279
+ - '465'
280
+ x-content-type-options:
281
+ - nosniff
282
+ etag:
283
+ - 28c52ced85d102f8d21eafb861582994
284
+ cache-control:
285
+ - max-age=0, private, must-revalidate
286
+ date:
287
+ - Wed, 06 Mar 2013 15:47:53 GMT
288
+ connection:
289
+ - close
290
+ body:
291
+ encoding: US-ASCII
292
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
293
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
294
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
295
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
296
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
297
+ value='i386' />\n</hardware_profile>\n"
298
+ http_version:
299
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
300
+ - request:
301
+ method: get
302
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
303
+ body:
304
+ encoding: US-ASCII
305
+ string: ''
306
+ headers:
307
+ Accept:
308
+ - application/xml
309
+ Authorization:
310
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
311
+ User-Agent:
312
+ - Faraday v0.8.6
313
+ response:
314
+ status:
315
+ code: 200
316
+ message:
317
+ headers:
318
+ content-type:
319
+ - application/xml
320
+ x-backend-runtime:
321
+ - '4.3392181396484375e-05'
322
+ server:
323
+ - Apache-DeltacloudVM/1.1.1
324
+ x-deltacloud-driver:
325
+ - mock
326
+ content-length:
327
+ - '465'
328
+ x-content-type-options:
329
+ - nosniff
330
+ etag:
331
+ - 28c52ced85d102f8d21eafb861582994
332
+ cache-control:
333
+ - max-age=0, private, must-revalidate
334
+ date:
335
+ - Wed, 06 Mar 2013 15:47:53 GMT
336
+ connection:
337
+ - close
338
+ body:
339
+ encoding: US-ASCII
340
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
341
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
342
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
343
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
344
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
345
+ value='i386' />\n</hardware_profile>\n"
346
+ http_version:
347
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
348
+ - request:
349
+ method: get
350
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
351
+ body:
352
+ encoding: US-ASCII
353
+ string: ''
354
+ headers:
355
+ Accept:
356
+ - application/xml
357
+ Authorization:
358
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
359
+ User-Agent:
360
+ - Faraday v0.8.6
361
+ response:
362
+ status:
363
+ code: 200
364
+ message:
365
+ headers:
366
+ content-type:
367
+ - application/xml
368
+ x-backend-runtime:
369
+ - '0.00015473365783691406'
370
+ server:
371
+ - Apache-DeltacloudVM/1.1.1
372
+ x-deltacloud-driver:
373
+ - mock
374
+ content-length:
375
+ - '465'
376
+ x-content-type-options:
377
+ - nosniff
378
+ etag:
379
+ - 28c52ced85d102f8d21eafb861582994
380
+ cache-control:
381
+ - max-age=0, private, must-revalidate
382
+ date:
383
+ - Wed, 06 Mar 2013 15:47:53 GMT
384
+ connection:
385
+ - close
386
+ body:
387
+ encoding: US-ASCII
388
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
389
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
390
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
391
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
392
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
393
+ value='i386' />\n</hardware_profile>\n"
394
+ http_version:
395
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
396
+ - request:
397
+ method: get
398
+ uri: http://localhost:3001/api/hardware_profiles/m1-small
399
+ body:
400
+ encoding: US-ASCII
401
+ string: ''
402
+ headers:
403
+ Accept:
404
+ - application/xml
405
+ Authorization:
406
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
407
+ User-Agent:
408
+ - Faraday v0.8.6
409
+ response:
410
+ status:
411
+ code: 200
412
+ message:
413
+ headers:
414
+ content-type:
415
+ - application/xml
416
+ x-backend-runtime:
417
+ - '0.00010776519775390625'
418
+ server:
419
+ - Apache-DeltacloudVM/1.1.1
420
+ x-deltacloud-driver:
421
+ - mock
422
+ content-length:
423
+ - '465'
424
+ x-content-type-options:
425
+ - nosniff
426
+ etag:
427
+ - 28c52ced85d102f8d21eafb861582994
428
+ cache-control:
429
+ - max-age=0, private, must-revalidate
430
+ date:
431
+ - Wed, 06 Mar 2013 15:47:53 GMT
432
+ connection:
433
+ - close
434
+ body:
435
+ encoding: US-ASCII
436
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<hardware_profile href='http://localhost:3001/api/hardware_profiles/m1-small'
437
+ id='m1-small'>\n <id>m1-small</id>\n <name>m1-small</name>\n <property
438
+ kind='fixed' name='cpu' unit='count' value='1' />\n <property kind='fixed'
439
+ name='memory' unit='MB' value='1740.8' />\n <property kind='fixed' name='storage'
440
+ unit='GB' value='160' />\n <property kind='fixed' name='architecture' unit='label'
441
+ value='i386' />\n</hardware_profile>\n"
442
+ http_version:
443
+ recorded_at: Wed, 06 Mar 2013 15:47:53 GMT
444
+ recorded_with: VCR 2.4.0