fog 1.34.0 → 1.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +10 -24
  3. data/CHANGELOG.md +84 -0
  4. data/CONTRIBUTING.md +1 -1
  5. data/README.md +4 -20
  6. data/fog.gemspec +7 -5
  7. data/lib/fog.rb +1 -0
  8. data/lib/fog/bin.rb +1 -0
  9. data/lib/fog/digitalocean/compute_v2.rb +108 -0
  10. data/lib/fog/digitalocean/models/compute_v2/flavor.rb +17 -0
  11. data/lib/fog/digitalocean/models/compute_v2/flavors.rb +21 -0
  12. data/lib/fog/digitalocean/models/compute_v2/image.rb +25 -0
  13. data/lib/fog/digitalocean/models/compute_v2/images.rb +36 -0
  14. data/lib/fog/digitalocean/models/compute_v2/region.rb +13 -0
  15. data/lib/fog/digitalocean/models/compute_v2/regions.rb +21 -0
  16. data/lib/fog/digitalocean/models/compute_v2/server.rb +166 -0
  17. data/lib/fog/digitalocean/models/compute_v2/servers.rb +39 -0
  18. data/lib/fog/digitalocean/models/compute_v2/ssh_key.rb +30 -0
  19. data/lib/fog/digitalocean/models/compute_v2/ssh_keys.rb +35 -0
  20. data/lib/fog/digitalocean/requests/compute_v2/change_kernel.rb +44 -0
  21. data/lib/fog/digitalocean/requests/compute_v2/convert_to_snapshot.rb +44 -0
  22. data/lib/fog/digitalocean/requests/compute_v2/create_server.rb +93 -0
  23. data/lib/fog/digitalocean/requests/compute_v2/create_ssh_key.rb +47 -0
  24. data/lib/fog/digitalocean/requests/compute_v2/delete_server.rb +28 -0
  25. data/lib/fog/digitalocean/requests/compute_v2/delete_ssh_key.rb +28 -0
  26. data/lib/fog/digitalocean/requests/compute_v2/disable_backups.rb +45 -0
  27. data/lib/fog/digitalocean/requests/compute_v2/enable_ipv6.rb +44 -0
  28. data/lib/fog/digitalocean/requests/compute_v2/enable_private_networking.rb +44 -0
  29. data/lib/fog/digitalocean/requests/compute_v2/get_droplet_action.rb +36 -0
  30. data/lib/fog/digitalocean/requests/compute_v2/get_image_details.rb +43 -0
  31. data/lib/fog/digitalocean/requests/compute_v2/get_server_details.rb +84 -0
  32. data/lib/fog/digitalocean/requests/compute_v2/get_ssh_key.rb +34 -0
  33. data/lib/fog/digitalocean/requests/compute_v2/list_droplet_actions.rb +38 -0
  34. data/lib/fog/digitalocean/requests/compute_v2/list_flavors.rb +131 -0
  35. data/lib/fog/digitalocean/requests/compute_v2/list_images.rb +50 -0
  36. data/lib/fog/digitalocean/requests/compute_v2/list_regions.rb +94 -0
  37. data/lib/fog/digitalocean/requests/compute_v2/list_servers.rb +28 -0
  38. data/lib/fog/digitalocean/requests/compute_v2/list_ssh_keys.rb +26 -0
  39. data/lib/fog/digitalocean/requests/compute_v2/password_reset.rb +44 -0
  40. data/lib/fog/digitalocean/requests/compute_v2/power_cycle.rb +44 -0
  41. data/lib/fog/digitalocean/requests/compute_v2/power_off.rb +44 -0
  42. data/lib/fog/digitalocean/requests/compute_v2/power_on.rb +44 -0
  43. data/lib/fog/digitalocean/requests/compute_v2/reboot_server.rb +44 -0
  44. data/lib/fog/digitalocean/requests/compute_v2/rebuild.rb +44 -0
  45. data/lib/fog/digitalocean/requests/compute_v2/rename.rb +44 -0
  46. data/lib/fog/digitalocean/requests/compute_v2/resize.rb +48 -0
  47. data/lib/fog/digitalocean/requests/compute_v2/restore.rb +44 -0
  48. data/lib/fog/digitalocean/requests/compute_v2/shutdown.rb +44 -0
  49. data/lib/fog/digitalocean/requests/compute_v2/snapshot.rb +44 -0
  50. data/lib/fog/digitalocean/requests/compute_v2/transfer_image.rb +44 -0
  51. data/lib/fog/digitalocean/requests/compute_v2/update_ssh_key.rb +46 -0
  52. data/lib/fog/digitalocean/requests/compute_v2/upgrade.rb +44 -0
  53. data/lib/fog/digitalocean/service.rb +51 -0
  54. data/lib/fog/linode/models/compute/kernels.rb +1 -1
  55. data/lib/fog/opennebula/models/compute/flavor.rb +13 -13
  56. data/lib/fog/opennebula/requests/compute/template_pool.rb +14 -11
  57. data/lib/fog/openstack.rb +2 -0
  58. data/lib/fog/openstack/core.rb +30 -3
  59. data/lib/fog/openstack/identity.rb +8 -7
  60. data/lib/fog/openstack/identity_v3.rb +1 -0
  61. data/lib/fog/openstack/image.rb +35 -130
  62. data/lib/fog/openstack/image_v1.rb +142 -0
  63. data/lib/fog/openstack/image_v2.rb +137 -0
  64. data/lib/fog/openstack/models/image_v1/image.rb +78 -0
  65. data/lib/fog/openstack/models/image_v1/images.rb +70 -0
  66. data/lib/fog/openstack/models/image_v2/image.rb +149 -0
  67. data/lib/fog/openstack/models/image_v2/images.rb +67 -0
  68. data/lib/fog/openstack/models/orchestration/stack.rb +5 -0
  69. data/lib/fog/openstack/models/volume/volume_type.rb +25 -0
  70. data/lib/fog/openstack/orchestration.rb +1 -0
  71. data/lib/fog/openstack/requests/compute/server_actions.rb +14 -3
  72. data/lib/fog/openstack/requests/{image → image_v1}/add_member_to_image.rb +2 -0
  73. data/lib/fog/openstack/requests/image_v1/create_image.rb +78 -0
  74. data/lib/fog/openstack/requests/image_v1/delete_image.rb +25 -0
  75. data/lib/fog/openstack/requests/image_v1/get_image.rb +47 -0
  76. data/lib/fog/openstack/requests/image_v1/get_image_by_id.rb +34 -0
  77. data/lib/fog/openstack/requests/image_v1/get_image_members.rb +31 -0
  78. data/lib/fog/openstack/requests/image_v1/get_shared_images.rb +31 -0
  79. data/lib/fog/openstack/requests/image_v1/list_public_images.rb +35 -0
  80. data/lib/fog/openstack/requests/image_v1/list_public_images_detailed.rb +37 -0
  81. data/lib/fog/openstack/requests/image_v1/remove_member_from_image.rb +25 -0
  82. data/lib/fog/openstack/requests/image_v1/set_tenant.rb +21 -0
  83. data/lib/fog/openstack/requests/image_v1/update_image.rb +66 -0
  84. data/lib/fog/openstack/requests/image_v1/update_image_members.rb +39 -0
  85. data/lib/fog/openstack/requests/image_v2/add_member_to_image.rb +26 -0
  86. data/lib/fog/openstack/requests/image_v2/add_tag_to_image.rb +25 -0
  87. data/lib/fog/openstack/requests/image_v2/create_image.rb +54 -0
  88. data/lib/fog/openstack/requests/image_v2/deactivate_image.rb +25 -0
  89. data/lib/fog/openstack/requests/image_v2/delete_image.rb +25 -0
  90. data/lib/fog/openstack/requests/image_v2/download_image.rb +29 -0
  91. data/lib/fog/openstack/requests/image_v2/get_image.rb +47 -0
  92. data/lib/fog/openstack/requests/image_v2/get_image_by_id.rb +34 -0
  93. data/lib/fog/openstack/requests/image_v2/get_image_members.rb +31 -0
  94. data/lib/fog/openstack/requests/image_v2/get_member_details.rb +33 -0
  95. data/lib/fog/openstack/requests/image_v2/get_shared_images.rb +31 -0
  96. data/lib/fog/openstack/requests/image_v2/list_images.rb +35 -0
  97. data/lib/fog/openstack/requests/image_v2/reactivate_image.rb +25 -0
  98. data/lib/fog/openstack/requests/image_v2/remove_member_from_image.rb +25 -0
  99. data/lib/fog/openstack/requests/image_v2/remove_tag_from_image.rb +25 -0
  100. data/lib/fog/openstack/requests/image_v2/set_tenant.rb +21 -0
  101. data/lib/fog/openstack/requests/image_v2/update_image.rb +49 -0
  102. data/lib/fog/openstack/requests/image_v2/update_image_member.rb +34 -0
  103. data/lib/fog/openstack/requests/image_v2/upload_image.rb +30 -0
  104. data/lib/fog/openstack/requests/orchestration/patch_stack.rb +37 -0
  105. data/lib/fog/openstack/requests/volume/create_volume_type.rb +41 -0
  106. data/lib/fog/openstack/requests/{image/delete_image.rb → volume/delete_volume_type.rb} +6 -6
  107. data/lib/fog/openstack/requests/volume/get_quota_usage.rb +44 -0
  108. data/lib/fog/openstack/requests/volume/get_volume_type_details.rb +1 -1
  109. data/lib/fog/openstack/requests/volume/update_volume_type.rb +41 -0
  110. data/lib/fog/openstack/volume.rb +5 -0
  111. data/lib/fog/rackspace/models/compute_v2/server.rb +11 -1
  112. data/lib/fog/rackspace/models/compute_v2/servers.rb +2 -2
  113. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +7 -2
  114. data/lib/fog/vcloud_director/requests/compute/get_execute_query.rb +13 -10
  115. data/lib/fog/version.rb +1 -1
  116. data/lib/fog/vsphere/models/compute/server.rb +1 -1
  117. data/lib/tasks/changelog_task.rb +1 -0
  118. data/spec/fog/openstack/identity_v3/authv3_a.yml +45 -52
  119. data/spec/fog/openstack/identity_v3/authv3_b.yml +45 -52
  120. data/spec/fog/openstack/identity_v3/authv3_c.yml +95 -101
  121. data/spec/fog/openstack/identity_v3/authv3_project.yml +68 -75
  122. data/spec/fog/openstack/identity_v3/authv3_token.yml +212 -174
  123. data/spec/fog/openstack/identity_v3/authv3_unscoped.yml +278 -266
  124. data/spec/fog/openstack/identity_v3/authv3_unscoped_reauth.yml +190 -202
  125. data/spec/fog/openstack/identity_v3/common_setup.yml +67 -445
  126. data/spec/fog/openstack/identity_v3/idv3_credential.yml +56 -26
  127. data/spec/fog/openstack/identity_v3/idv3_credential_crud.yml +292 -152
  128. data/spec/fog/openstack/identity_v3/idv3_domain.yml +99 -49
  129. data/spec/fog/openstack/identity_v3/idv3_domain_crud.yml +239 -119
  130. data/spec/fog/openstack/identity_v3/idv3_domain_group_roles_mutation.yml +414 -205
  131. data/spec/fog/openstack/identity_v3/idv3_domain_roles_mutation.yml +259 -136
  132. data/spec/fog/openstack/identity_v3/idv3_endpoint.yml +474 -472
  133. data/spec/fog/openstack/identity_v3/idv3_endpoints_crud.yml +679 -626
  134. data/spec/fog/openstack/identity_v3/idv3_group_crud_mutation.yml +536 -269
  135. data/spec/fog/openstack/identity_v3/idv3_policy.yml +76 -36
  136. data/spec/fog/openstack/identity_v3/idv3_policy_crud.yml +197 -97
  137. data/spec/fog/openstack/identity_v3/idv3_project.yml +135 -85
  138. data/spec/fog/openstack/identity_v3/idv3_project_crud.yml +237 -127
  139. data/spec/fog/openstack/identity_v3/idv3_project_group_user_roles_mutation.yml +625 -295
  140. data/spec/fog/openstack/identity_v3/idv3_project_hier_crud_list.yml +716 -355
  141. data/spec/fog/openstack/identity_v3/idv3_role.yml +134 -88
  142. data/spec/fog/openstack/identity_v3/idv3_role_crud.yml +312 -118
  143. data/spec/fog/openstack/identity_v3/idv3_service.yml +179 -133
  144. data/spec/fog/openstack/identity_v3/idv3_services_crud.yml +306 -212
  145. data/spec/fog/openstack/identity_v3/idv3_token.yml +213 -177
  146. data/spec/fog/openstack/identity_v3/idv3_user_crud.yml +345 -188
  147. data/spec/fog/openstack/identity_v3/idv3_users.yml +182 -116
  148. data/spec/fog/openstack/identity_v3_spec.rb +103 -85
  149. data/spec/fog/openstack/{identity_v3/idv3_other_region.yml → image_v1/common_setup.yml} +50 -93
  150. data/spec/fog/openstack/image_v1/list_images.yml +54 -0
  151. data/spec/fog/openstack/image_v1_spec.rb +24 -0
  152. data/spec/fog/openstack/image_v2/common_setup.yml +144 -0
  153. data/spec/fog/openstack/image_v2/image_schema.json +190 -0
  154. data/spec/fog/openstack/image_v2/image_v2_activation.yml +3988 -0
  155. data/spec/fog/openstack/image_v2/image_v2_create_id.yml +291 -0
  156. data/spec/fog/openstack/image_v2/image_v2_crud.yml +437 -0
  157. data/spec/fog/openstack/image_v2/image_v2_member_crudl.yml +451 -0
  158. data/spec/fog/openstack/image_v2/image_v2_tags.yml +532 -0
  159. data/spec/fog/openstack/image_v2/image_v2_upload_download.yml +3966 -0
  160. data/spec/fog/openstack/image_v2/minimal.ova +0 -0
  161. data/spec/fog/openstack/image_v2_spec.rb +285 -0
  162. data/spec/fog/openstack/image_v2_upload_spec.rb +74 -0
  163. data/spec/fog/openstack/shared_context.rb +14 -10
  164. data/tests/compute/helper.rb +0 -3
  165. data/tests/digitalocean/requests/compute_v2/list_flavors_tests.rb +25 -0
  166. data/tests/digitalocean/requests/compute_v2/list_images_tests.rb +25 -0
  167. data/tests/digitalocean/requests/compute_v2/list_regions_tests.rb +21 -0
  168. data/tests/digitalocean/requests/compute_v2/server_tests.rb +77 -0
  169. data/tests/helpers/mock_helper.rb +1 -0
  170. data/tests/opennebula/models/compute/flavor_tests.rb +1 -1
  171. data/tests/openstack/requests/orchestration/stack_tests.rb +5 -1
  172. data/tests/openstack/requests/volume/volume_type_tests.rb +32 -0
  173. data/tests/rackspace/models/compute_v2/server_tests.rb +7 -7
  174. metadata +160 -236
  175. data/gemfiles/Gemfile-ruby-1.8.7 +0 -17
  176. data/lib/fog/bin/xenserver.rb +0 -29
  177. data/lib/fog/openstack/models/image/image.rb +0 -76
  178. data/lib/fog/openstack/models/image/images.rb +0 -67
  179. data/lib/fog/openstack/requests/image/create_image.rb +0 -76
  180. data/lib/fog/openstack/requests/image/get_image.rb +0 -45
  181. data/lib/fog/openstack/requests/image/get_image_by_id.rb +0 -32
  182. data/lib/fog/openstack/requests/image/get_image_members.rb +0 -29
  183. data/lib/fog/openstack/requests/image/get_shared_images.rb +0 -29
  184. data/lib/fog/openstack/requests/image/list_public_images.rb +0 -33
  185. data/lib/fog/openstack/requests/image/list_public_images_detailed.rb +0 -35
  186. data/lib/fog/openstack/requests/image/remove_member_from_image.rb +0 -23
  187. data/lib/fog/openstack/requests/image/set_tenant.rb +0 -19
  188. data/lib/fog/openstack/requests/image/update_image.rb +0 -64
  189. data/lib/fog/openstack/requests/image/update_image_members.rb +0 -37
  190. data/lib/fog/xenserver.rb +0 -1
  191. data/lib/fog/xenserver/CHANGELOG.md +0 -77
  192. data/lib/fog/xenserver/compute.rb +0 -186
  193. data/lib/fog/xenserver/core.rb +0 -94
  194. data/lib/fog/xenserver/examples/README.md +0 -11
  195. data/lib/fog/xenserver/examples/chage_default_storage_repository.md +0 -99
  196. data/lib/fog/xenserver/examples/creating_servers.md +0 -168
  197. data/lib/fog/xenserver/examples/getting_started.md +0 -163
  198. data/lib/fog/xenserver/examples/networks-and-vlans.rb +0 -44
  199. data/lib/fog/xenserver/examples/storage_repositories.md +0 -94
  200. data/lib/fog/xenserver/models/compute/blob.rb +0 -22
  201. data/lib/fog/xenserver/models/compute/blobs.rb +0 -25
  202. data/lib/fog/xenserver/models/compute/bond.rb +0 -23
  203. data/lib/fog/xenserver/models/compute/bonds.rb +0 -25
  204. data/lib/fog/xenserver/models/compute/console.rb +0 -29
  205. data/lib/fog/xenserver/models/compute/consoles.rb +0 -25
  206. data/lib/fog/xenserver/models/compute/crash_dump.rb +0 -19
  207. data/lib/fog/xenserver/models/compute/crash_dumps.rb +0 -25
  208. data/lib/fog/xenserver/models/compute/dr_task.rb +0 -17
  209. data/lib/fog/xenserver/models/compute/dr_tasks.rb +0 -25
  210. data/lib/fog/xenserver/models/compute/gpu_group.rb +0 -22
  211. data/lib/fog/xenserver/models/compute/gpu_groups.rb +0 -25
  212. data/lib/fog/xenserver/models/compute/guest_metrics.rb +0 -26
  213. data/lib/fog/xenserver/models/compute/host.rb +0 -156
  214. data/lib/fog/xenserver/models/compute/host_cpu.rb +0 -34
  215. data/lib/fog/xenserver/models/compute/host_crash_dump.rb +0 -20
  216. data/lib/fog/xenserver/models/compute/host_crash_dumps.rb +0 -25
  217. data/lib/fog/xenserver/models/compute/host_metrics.rb +0 -26
  218. data/lib/fog/xenserver/models/compute/host_patch.rb +0 -25
  219. data/lib/fog/xenserver/models/compute/host_patchs.rb +0 -25
  220. data/lib/fog/xenserver/models/compute/hosts.rb +0 -25
  221. data/lib/fog/xenserver/models/compute/network.rb +0 -93
  222. data/lib/fog/xenserver/models/compute/networks.rb +0 -29
  223. data/lib/fog/xenserver/models/compute/pbd.rb +0 -37
  224. data/lib/fog/xenserver/models/compute/pbds.rb +0 -29
  225. data/lib/fog/xenserver/models/compute/pci.rb +0 -22
  226. data/lib/fog/xenserver/models/compute/pcis.rb +0 -25
  227. data/lib/fog/xenserver/models/compute/pgpu.rb +0 -20
  228. data/lib/fog/xenserver/models/compute/pgpus.rb +0 -25
  229. data/lib/fog/xenserver/models/compute/pif.rb +0 -54
  230. data/lib/fog/xenserver/models/compute/pif_metrics.rb +0 -28
  231. data/lib/fog/xenserver/models/compute/pifs.rb +0 -29
  232. data/lib/fog/xenserver/models/compute/pifs_metrics.rb +0 -25
  233. data/lib/fog/xenserver/models/compute/pool.rb +0 -75
  234. data/lib/fog/xenserver/models/compute/pool_patch.rb +0 -24
  235. data/lib/fog/xenserver/models/compute/pool_patchs.rb +0 -25
  236. data/lib/fog/xenserver/models/compute/pools.rb +0 -29
  237. data/lib/fog/xenserver/models/compute/role.rb +0 -19
  238. data/lib/fog/xenserver/models/compute/roles.rb +0 -25
  239. data/lib/fog/xenserver/models/compute/server.rb +0 -251
  240. data/lib/fog/xenserver/models/compute/server_appliance.rb +0 -21
  241. data/lib/fog/xenserver/models/compute/server_appliances.rb +0 -25
  242. data/lib/fog/xenserver/models/compute/servers.rb +0 -64
  243. data/lib/fog/xenserver/models/compute/storage_manager.rb +0 -28
  244. data/lib/fog/xenserver/models/compute/storage_managers.rb +0 -25
  245. data/lib/fog/xenserver/models/compute/storage_repositories.rb +0 -27
  246. data/lib/fog/xenserver/models/compute/storage_repository.rb +0 -90
  247. data/lib/fog/xenserver/models/compute/tunnel.rb +0 -20
  248. data/lib/fog/xenserver/models/compute/tunnels.rb +0 -25
  249. data/lib/fog/xenserver/models/compute/vbd.rb +0 -88
  250. data/lib/fog/xenserver/models/compute/vbd_metrics.rb +0 -25
  251. data/lib/fog/xenserver/models/compute/vbds.rb +0 -29
  252. data/lib/fog/xenserver/models/compute/vdi.rb +0 -102
  253. data/lib/fog/xenserver/models/compute/vdis.rb +0 -25
  254. data/lib/fog/xenserver/models/compute/vif.rb +0 -56
  255. data/lib/fog/xenserver/models/compute/vifs.rb +0 -25
  256. data/lib/fog/xenserver/models/compute/vlan.rb +0 -78
  257. data/lib/fog/xenserver/models/compute/vlans.rb +0 -35
  258. data/lib/fog/xenserver/models/compute/vmpp.rb +0 -35
  259. data/lib/fog/xenserver/models/compute/vmpps.rb +0 -25
  260. data/lib/fog/xenserver/models/compute/vtpm.rb +0 -18
  261. data/lib/fog/xenserver/models/compute/vtpms.rb +0 -25
  262. data/lib/fog/xenserver/parser.rb +0 -34
  263. data/lib/fog/xenserver/parsers/get_hosts.rb +0 -16
  264. data/lib/fog/xenserver/parsers/get_networks.rb +0 -16
  265. data/lib/fog/xenserver/parsers/get_pools.rb +0 -16
  266. data/lib/fog/xenserver/parsers/get_records.rb +0 -16
  267. data/lib/fog/xenserver/parsers/get_storage_repositories.rb +0 -16
  268. data/lib/fog/xenserver/parsers/get_vbds.rb +0 -16
  269. data/lib/fog/xenserver/parsers/get_vifs.rb +0 -16
  270. data/lib/fog/xenserver/parsers/get_vms.rb +0 -16
  271. data/lib/fog/xenserver/requests/compute/clone_server.rb +0 -30
  272. data/lib/fog/xenserver/requests/compute/create_network.rb +0 -46
  273. data/lib/fog/xenserver/requests/compute/create_server.rb +0 -144
  274. data/lib/fog/xenserver/requests/compute/create_sr.rb +0 -88
  275. data/lib/fog/xenserver/requests/compute/create_vbd.rb +0 -43
  276. data/lib/fog/xenserver/requests/compute/create_vdi.rb +0 -57
  277. data/lib/fog/xenserver/requests/compute/create_vif.rb +0 -62
  278. data/lib/fog/xenserver/requests/compute/create_vlan.rb +0 -43
  279. data/lib/fog/xenserver/requests/compute/destroy_network.rb +0 -31
  280. data/lib/fog/xenserver/requests/compute/destroy_record.rb +0 -11
  281. data/lib/fog/xenserver/requests/compute/destroy_server.rb +0 -20
  282. data/lib/fog/xenserver/requests/compute/destroy_sr.rb +0 -28
  283. data/lib/fog/xenserver/requests/compute/destroy_vdi.rb +0 -20
  284. data/lib/fog/xenserver/requests/compute/destroy_vif.rb +0 -20
  285. data/lib/fog/xenserver/requests/compute/destroy_vlan.rb +0 -30
  286. data/lib/fog/xenserver/requests/compute/disable_host.rb +0 -23
  287. data/lib/fog/xenserver/requests/compute/eject_vbd.rb +0 -17
  288. data/lib/fog/xenserver/requests/compute/enable_host.rb +0 -22
  289. data/lib/fog/xenserver/requests/compute/get_record.rb +0 -31
  290. data/lib/fog/xenserver/requests/compute/get_records.rb +0 -24
  291. data/lib/fog/xenserver/requests/compute/insert_vbd.rb +0 -17
  292. data/lib/fog/xenserver/requests/compute/provision_server.rb +0 -17
  293. data/lib/fog/xenserver/requests/compute/reboot_host.rb +0 -17
  294. data/lib/fog/xenserver/requests/compute/reboot_server.rb +0 -17
  295. data/lib/fog/xenserver/requests/compute/scan_sr.rb +0 -17
  296. data/lib/fog/xenserver/requests/compute/set_affinity.rb +0 -19
  297. data/lib/fog/xenserver/requests/compute/set_attribute.rb +0 -19
  298. data/lib/fog/xenserver/requests/compute/shutdown_host.rb +0 -17
  299. data/lib/fog/xenserver/requests/compute/shutdown_server.rb +0 -17
  300. data/lib/fog/xenserver/requests/compute/snapshot_revert.rb +0 -24
  301. data/lib/fog/xenserver/requests/compute/snapshot_server.rb +0 -17
  302. data/lib/fog/xenserver/requests/compute/start_server.rb +0 -17
  303. data/lib/fog/xenserver/requests/compute/start_vm.rb +0 -19
  304. data/lib/fog/xenserver/requests/compute/unplug_pbd.rb +0 -20
  305. data/lib/fog/xenserver/requests/compute/unplug_vbd.rb +0 -25
  306. data/lib/fog/xenserver/utilities.rb +0 -8
  307. data/tests/xenserver/README +0 -21
  308. data/tests/xenserver/compute_tests.rb +0 -51
  309. data/tests/xenserver/helper.rb +0 -36
  310. data/tests/xenserver/models/compute/console_test.rb +0 -35
  311. data/tests/xenserver/models/compute/consoles_test.rb +0 -19
  312. data/tests/xenserver/models/compute/host_cpu_tests.rb +0 -58
  313. data/tests/xenserver/models/compute/host_metrics_tests.rb +0 -48
  314. data/tests/xenserver/models/compute/host_tests.rb +0 -98
  315. data/tests/xenserver/models/compute/hosts_tests.rb +0 -22
  316. data/tests/xenserver/models/compute/network_tests.rb +0 -79
  317. data/tests/xenserver/models/compute/networks_tests.rb +0 -22
  318. data/tests/xenserver/models/compute/pbd_tests.rb +0 -76
  319. data/tests/xenserver/models/compute/pbds_tests.rb +0 -22
  320. data/tests/xenserver/models/compute/pif_tests.rb +0 -58
  321. data/tests/xenserver/models/compute/pifs_tests.rb +0 -22
  322. data/tests/xenserver/models/compute/pool_tests.rb +0 -56
  323. data/tests/xenserver/models/compute/pools_tests.rb +0 -30
  324. data/tests/xenserver/models/compute/server_tests.rb +0 -184
  325. data/tests/xenserver/models/compute/servers_tests.rb +0 -89
  326. data/tests/xenserver/models/compute/storage_repositories_tests.rb +0 -30
  327. data/tests/xenserver/models/compute/storage_repository_tests.rb +0 -114
  328. data/tests/xenserver/models/compute/vbd_tests.rb +0 -115
  329. data/tests/xenserver/models/compute/vbds_tests.rb +0 -22
  330. data/tests/xenserver/models/compute/vif_tests.rb +0 -53
  331. data/tests/xenserver/models/compute/vifs_tests.rb +0 -22
  332. data/tests/xenserver/models/compute/vlan_tests.rb +0 -76
  333. data/tests/xenserver/models/compute/vlans_tests.rb +0 -36
  334. data/tests/xenserver/requests/compute/clone_server_tests.rb +0 -32
  335. data/tests/xenserver/requests/compute/create_network_tests.rb +0 -20
  336. data/tests/xenserver/requests/compute/create_server_tests.rb +0 -129
  337. data/tests/xenserver/requests/compute/create_sr_tests.rb +0 -54
  338. data/tests/xenserver/requests/compute/create_vdi_tests.rb +0 -80
  339. data/tests/xenserver/requests/compute/create_vif_tests.rb +0 -88
  340. data/tests/xenserver/requests/compute/create_vlan_tests.rb +0 -36
  341. data/tests/xenserver/requests/compute/destroy_network_tests.rb +0 -13
  342. data/tests/xenserver/requests/compute/destroy_sr_tests.rb +0 -46
  343. data/tests/xenserver/requests/compute/destroy_vdi_tests.rb +0 -25
  344. data/tests/xenserver/requests/compute/destroy_vlan_tests.rb +0 -36
  345. data/tests/xenserver/requests/compute/disable_host_tests.rb +0 -16
  346. data/tests/xenserver/requests/compute/enable_host_tests.rb +0 -16
  347. data/tests/xenserver/requests/compute/get_record_tests.rb +0 -15
  348. data/tests/xenserver/requests/compute/set_attribute_tests.rb +0 -66
  349. data/tests/xenserver/requests/compute/unplug_pbd_tests.rb +0 -48
  350. data/tests/xenserver/xenserver_tests.rb +0 -33
@@ -2,1393 +2,1754 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://devstack.openstack.stack:35357/v3/domains
5
+ uri: http://10.97.17.84:35357/v3/domains
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - fog-core/1.32.0
11
+ - fog-core/1.32.1
12
+ Proxy-Connection:
13
+ - Keep-Alive
12
14
  Content-Type:
13
15
  - application/json
14
16
  Accept:
15
17
  - application/json
16
18
  X-Auth-Token:
17
- - ea1e9622dc8f4802a5f26955ccd8763f
19
+ - f6af15c0332e4d3ab7716b51d8fedfff
18
20
  response:
19
21
  status:
20
22
  code: 200
21
23
  message: ''
22
24
  headers:
23
25
  Date:
24
- - Fri, 24 Jul 2015 11:03:53 GMT
26
+ - Fri, 02 Oct 2015 11:41:33 GMT
25
27
  Server:
26
28
  - Apache/2.4.7 (Ubuntu)
27
29
  Vary:
28
30
  - X-Auth-Token
29
31
  X-Openstack-Request-Id:
30
- - req-6a9fcfa9-4368-4fa2-82f0-61f16dedb158
32
+ - req-c668801c-467f-41ea-af8c-c0b03c684c49
31
33
  Content-Length:
32
- - '317'
34
+ - '311'
33
35
  Content-Type:
34
36
  - application/json
37
+ X-Cache:
38
+ - MISS from i056593-vagrant
39
+ X-Cache-Lookup:
40
+ - MISS from i056593-vagrant:3128
41
+ Via:
42
+ - 1.1 i056593-vagrant (squid/3.3.8)
43
+ Connection:
44
+ - keep-alive
35
45
  body:
36
- encoding: US-ASCII
37
- string: ! '{"domains": [{"links": {"self": "http://devstack.openstack.stack:35357/v3/domains/default"},
46
+ encoding: UTF-8
47
+ string: '{"domains": [{"links": {"self": "http://10.97.17.84:35357/v3/domains/default"},
38
48
  "enabled": true, "description": "Owns users and tenants (i.e. projects) available
39
49
  on Identity API v2.", "name": "Default", "id": "default"}], "links": {"self":
40
- "http://devstack.openstack.stack:35357/v3/domains", "previous": null, "next": null}}'
50
+ "http://10.97.17.84:35357/v3/domains", "previous": null, "next": null}}'
41
51
  http_version:
42
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
52
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
43
53
  - request:
44
54
  method: post
45
- uri: http://devstack.openstack.stack:35357/v3/projects
55
+ uri: http://10.97.17.84:35357/v3/projects
46
56
  body:
47
57
  encoding: UTF-8
48
- string: ! '{"project":{"name":"p-foobar67"}}'
58
+ string: '{"project":{"name":"p-foobar67"}}'
49
59
  headers:
50
60
  User-Agent:
51
- - fog-core/1.32.0
61
+ - fog-core/1.32.1
62
+ Proxy-Connection:
63
+ - Keep-Alive
52
64
  Content-Type:
53
65
  - application/json
54
66
  Accept:
55
67
  - application/json
56
68
  X-Auth-Token:
57
- - ea1e9622dc8f4802a5f26955ccd8763f
69
+ - f6af15c0332e4d3ab7716b51d8fedfff
58
70
  response:
59
71
  status:
60
72
  code: 201
61
73
  message: ''
62
74
  headers:
63
75
  Date:
64
- - Fri, 24 Jul 2015 11:03:53 GMT
76
+ - Fri, 02 Oct 2015 11:41:34 GMT
65
77
  Server:
66
78
  - Apache/2.4.7 (Ubuntu)
67
79
  Vary:
68
80
  - X-Auth-Token
69
81
  X-Openstack-Request-Id:
70
- - req-c9af88df-0f52-4f8f-a318-492ff1bba5e5
82
+ - req-7291d40e-1742-44b4-97b3-4524f9364bdd
71
83
  Content-Length:
72
- - '251'
84
+ - '248'
73
85
  Content-Type:
74
86
  - application/json
87
+ X-Cache:
88
+ - MISS from i056593-vagrant
89
+ X-Cache-Lookup:
90
+ - MISS from i056593-vagrant:3128
91
+ Via:
92
+ - 1.1 i056593-vagrant (squid/3.3.8)
93
+ Connection:
94
+ - keep-alive
75
95
  body:
76
- encoding: US-ASCII
77
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4"},
78
- "enabled": true, "id": "edd3bec6a30847349d69216ed4b3e0b4", "parent_id": null,
96
+ encoding: UTF-8
97
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174"},
98
+ "enabled": true, "id": "7720c2b0486e4b4e8f98605f1a3a2174", "parent_id": null,
79
99
  "domain_id": "default", "name": "p-foobar67"}}'
80
100
  http_version:
81
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
101
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
82
102
  - request:
83
103
  method: post
84
- uri: http://devstack.openstack.stack:35357/v3/projects
104
+ uri: http://10.97.17.84:35357/v3/projects
85
105
  body:
86
106
  encoding: UTF-8
87
- string: ! '{"project":{"name":"p-baz67","parent_id":"edd3bec6a30847349d69216ed4b3e0b4"}}'
107
+ string: '{"project":{"name":"p-baz67","parent_id":"7720c2b0486e4b4e8f98605f1a3a2174"}}'
88
108
  headers:
89
109
  User-Agent:
90
- - fog-core/1.32.0
110
+ - fog-core/1.32.1
111
+ Proxy-Connection:
112
+ - Keep-Alive
91
113
  Content-Type:
92
114
  - application/json
93
115
  Accept:
94
116
  - application/json
95
117
  X-Auth-Token:
96
- - ea1e9622dc8f4802a5f26955ccd8763f
118
+ - f6af15c0332e4d3ab7716b51d8fedfff
97
119
  response:
98
120
  status:
99
121
  code: 201
100
122
  message: ''
101
123
  headers:
102
124
  Date:
103
- - Fri, 24 Jul 2015 11:03:53 GMT
125
+ - Fri, 02 Oct 2015 11:41:34 GMT
104
126
  Server:
105
127
  - Apache/2.4.7 (Ubuntu)
106
128
  Vary:
107
129
  - X-Auth-Token
108
130
  X-Openstack-Request-Id:
109
- - req-14ed4a49-b23f-4d5d-822e-3241a9a28b9f
131
+ - req-5dcba585-a133-4a21-a502-b12ad520f514
110
132
  Content-Length:
111
- - '278'
133
+ - '275'
112
134
  Content-Type:
113
135
  - application/json
136
+ X-Cache:
137
+ - MISS from i056593-vagrant
138
+ X-Cache-Lookup:
139
+ - MISS from i056593-vagrant:3128
140
+ Via:
141
+ - 1.1 i056593-vagrant (squid/3.3.8)
142
+ Connection:
143
+ - keep-alive
114
144
  body:
115
- encoding: US-ASCII
116
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/570b1075f2a7470ea2b2f009f440b7b0"},
117
- "enabled": true, "id": "570b1075f2a7470ea2b2f009f440b7b0", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
145
+ encoding: UTF-8
146
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/579d658f714d4f649ed20c611c7e7d68"},
147
+ "enabled": true, "id": "579d658f714d4f649ed20c611c7e7d68", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
118
148
  "domain_id": "default", "name": "p-baz67"}}'
119
149
  http_version:
120
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
150
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
121
151
  - request:
122
152
  method: get
123
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-baz67
153
+ uri: http://10.97.17.84:35357/v3/projects?name=p-baz67
124
154
  body:
125
155
  encoding: US-ASCII
126
156
  string: ''
127
157
  headers:
128
158
  User-Agent:
129
- - fog-core/1.32.0
159
+ - fog-core/1.32.1
160
+ Proxy-Connection:
161
+ - Keep-Alive
130
162
  Content-Type:
131
163
  - application/json
132
164
  Accept:
133
165
  - application/json
134
166
  X-Auth-Token:
135
- - ea1e9622dc8f4802a5f26955ccd8763f
167
+ - f6af15c0332e4d3ab7716b51d8fedfff
136
168
  response:
137
169
  status:
138
170
  code: 200
139
171
  message: ''
140
172
  headers:
141
173
  Date:
142
- - Fri, 24 Jul 2015 11:03:53 GMT
174
+ - Fri, 02 Oct 2015 11:41:34 GMT
143
175
  Server:
144
176
  - Apache/2.4.7 (Ubuntu)
145
177
  Vary:
146
178
  - X-Auth-Token
147
179
  X-Openstack-Request-Id:
148
- - req-8517afe6-f361-4004-9a01-411d067f1a92
180
+ - req-7d6cc301-5acb-44a7-82d0-c6533ec014ca
149
181
  Content-Length:
150
- - '388'
182
+ - '382'
151
183
  Content-Type:
152
184
  - application/json
185
+ X-Cache:
186
+ - MISS from i056593-vagrant
187
+ X-Cache-Lookup:
188
+ - MISS from i056593-vagrant:3128
189
+ Via:
190
+ - 1.1 i056593-vagrant (squid/3.3.8)
191
+ Connection:
192
+ - keep-alive
153
193
  body:
154
- encoding: US-ASCII
155
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-baz67",
194
+ encoding: UTF-8
195
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-baz67",
156
196
  "previous": null, "next": null}, "projects": [{"description": "", "links":
157
- {"self": "http://devstack.openstack.stack:35357/v3/projects/570b1075f2a7470ea2b2f009f440b7b0"},
158
- "enabled": true, "id": "570b1075f2a7470ea2b2f009f440b7b0", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
197
+ {"self": "http://10.97.17.84:35357/v3/projects/579d658f714d4f649ed20c611c7e7d68"},
198
+ "enabled": true, "id": "579d658f714d4f649ed20c611c7e7d68", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
159
199
  "domain_id": "default", "name": "p-baz67"}]}'
160
200
  http_version:
161
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
201
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
162
202
  - request:
163
203
  method: post
164
- uri: http://devstack.openstack.stack:35357/v3/projects
204
+ uri: http://10.97.17.84:35357/v3/projects
165
205
  body:
166
206
  encoding: UTF-8
167
- string: ! '{"project":{"name":"p-boo67","parent_id":"edd3bec6a30847349d69216ed4b3e0b4"}}'
207
+ string: '{"project":{"name":"p-boo67","parent_id":"7720c2b0486e4b4e8f98605f1a3a2174"}}'
168
208
  headers:
169
209
  User-Agent:
170
- - fog-core/1.32.0
210
+ - fog-core/1.32.1
211
+ Proxy-Connection:
212
+ - Keep-Alive
171
213
  Content-Type:
172
214
  - application/json
173
215
  Accept:
174
216
  - application/json
175
217
  X-Auth-Token:
176
- - ea1e9622dc8f4802a5f26955ccd8763f
218
+ - f6af15c0332e4d3ab7716b51d8fedfff
177
219
  response:
178
220
  status:
179
221
  code: 201
180
222
  message: ''
181
223
  headers:
182
224
  Date:
183
- - Fri, 24 Jul 2015 11:03:53 GMT
225
+ - Fri, 02 Oct 2015 11:41:34 GMT
184
226
  Server:
185
227
  - Apache/2.4.7 (Ubuntu)
186
228
  Vary:
187
229
  - X-Auth-Token
188
230
  X-Openstack-Request-Id:
189
- - req-2229c28f-94de-4fdd-b839-e8e23b68c2d3
231
+ - req-6b9d791f-09d0-4fa3-9c44-9a0c4ee95b14
190
232
  Content-Length:
191
- - '278'
233
+ - '275'
192
234
  Content-Type:
193
235
  - application/json
236
+ X-Cache:
237
+ - MISS from i056593-vagrant
238
+ X-Cache-Lookup:
239
+ - MISS from i056593-vagrant:3128
240
+ Via:
241
+ - 1.1 i056593-vagrant (squid/3.3.8)
242
+ Connection:
243
+ - keep-alive
194
244
  body:
195
- encoding: US-ASCII
196
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/8e1bc4fbfd6c47fea94d0e6ebad05be6"},
197
- "enabled": true, "id": "8e1bc4fbfd6c47fea94d0e6ebad05be6", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
245
+ encoding: UTF-8
246
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/bcb36c048aa346678e2e328ec6312356"},
247
+ "enabled": true, "id": "bcb36c048aa346678e2e328ec6312356", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
198
248
  "domain_id": "default", "name": "p-boo67"}}'
199
249
  http_version:
200
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
250
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
201
251
  - request:
202
252
  method: post
203
- uri: http://devstack.openstack.stack:35357/v3/projects
253
+ uri: http://10.97.17.84:35357/v3/projects
204
254
  body:
205
255
  encoding: UTF-8
206
- string: ! '{"project":{"name":"p-booboo67","parent_id":"8e1bc4fbfd6c47fea94d0e6ebad05be6"}}'
256
+ string: '{"project":{"name":"p-booboo67","parent_id":"bcb36c048aa346678e2e328ec6312356"}}'
207
257
  headers:
208
258
  User-Agent:
209
- - fog-core/1.32.0
259
+ - fog-core/1.32.1
260
+ Proxy-Connection:
261
+ - Keep-Alive
210
262
  Content-Type:
211
263
  - application/json
212
264
  Accept:
213
265
  - application/json
214
266
  X-Auth-Token:
215
- - ea1e9622dc8f4802a5f26955ccd8763f
267
+ - f6af15c0332e4d3ab7716b51d8fedfff
216
268
  response:
217
269
  status:
218
270
  code: 201
219
271
  message: ''
220
272
  headers:
221
273
  Date:
222
- - Fri, 24 Jul 2015 11:03:53 GMT
274
+ - Fri, 02 Oct 2015 11:41:34 GMT
223
275
  Server:
224
276
  - Apache/2.4.7 (Ubuntu)
225
277
  Vary:
226
278
  - X-Auth-Token
227
279
  X-Openstack-Request-Id:
228
- - req-d36dac0b-3ee8-497f-90b6-ea7ee434bca5
280
+ - req-3ddf2787-8393-4abf-a135-22b7ca33c899
229
281
  Content-Length:
230
- - '281'
282
+ - '278'
231
283
  Content-Type:
232
284
  - application/json
285
+ X-Cache:
286
+ - MISS from i056593-vagrant
287
+ X-Cache-Lookup:
288
+ - MISS from i056593-vagrant:3128
289
+ Via:
290
+ - 1.1 i056593-vagrant (squid/3.3.8)
291
+ Connection:
292
+ - keep-alive
233
293
  body:
234
- encoding: US-ASCII
235
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259"},
236
- "enabled": true, "id": "15a7ecafe8c44fe18cb9b3ca009f8259", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
294
+ encoding: UTF-8
295
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356"},
296
+ "enabled": true, "id": "f7e1219aa56843b986f06530f73cc356", "parent_id": "bcb36c048aa346678e2e328ec6312356",
237
297
  "domain_id": "default", "name": "p-booboo67"}}'
238
298
  http_version:
239
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
299
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
240
300
  - request:
241
301
  method: post
242
- uri: http://devstack.openstack.stack:35357/v3/roles
302
+ uri: http://10.97.17.84:35357/v3/roles
243
303
  body:
244
304
  encoding: UTF-8
245
- string: ! '{"role":{"name":"r-project67"}}'
305
+ string: '{"role":{"name":"r-project67"}}'
246
306
  headers:
247
307
  User-Agent:
248
- - fog-core/1.32.0
308
+ - fog-core/1.32.1
309
+ Proxy-Connection:
310
+ - Keep-Alive
249
311
  Content-Type:
250
312
  - application/json
251
313
  Accept:
252
314
  - application/json
253
315
  X-Auth-Token:
254
- - ea1e9622dc8f4802a5f26955ccd8763f
316
+ - f6af15c0332e4d3ab7716b51d8fedfff
255
317
  response:
256
318
  status:
257
319
  code: 201
258
320
  message: ''
259
321
  headers:
260
322
  Date:
261
- - Fri, 24 Jul 2015 11:03:54 GMT
323
+ - Fri, 02 Oct 2015 11:41:34 GMT
262
324
  Server:
263
325
  - Apache/2.4.7 (Ubuntu)
264
326
  Vary:
265
327
  - X-Auth-Token
266
328
  X-Openstack-Request-Id:
267
- - req-105f752a-0c7a-492a-9080-e8bf5767fa55
329
+ - req-bbff4916-777d-42b6-a7da-44b30d3344bc
268
330
  Content-Length:
269
- - '167'
331
+ - '164'
270
332
  Content-Type:
271
333
  - application/json
334
+ X-Cache:
335
+ - MISS from i056593-vagrant
336
+ X-Cache-Lookup:
337
+ - MISS from i056593-vagrant:3128
338
+ Via:
339
+ - 1.1 i056593-vagrant (squid/3.3.8)
340
+ Connection:
341
+ - keep-alive
272
342
  body:
273
- encoding: US-ASCII
274
- string: ! '{"role": {"id": "9eeae75b331946dd907f16d3dccb916a", "links": {"self":
275
- "http://devstack.openstack.stack:35357/v3/roles/9eeae75b331946dd907f16d3dccb916a"},
276
- "name": "r-project67"}}'
343
+ encoding: UTF-8
344
+ string: '{"role": {"id": "80b1293f341a4651b1886d9e7f71763c", "links": {"self":
345
+ "http://10.97.17.84:35357/v3/roles/80b1293f341a4651b1886d9e7f71763c"}, "name":
346
+ "r-project67"}}'
277
347
  http_version:
278
- recorded_at: Fri, 24 Jul 2015 11:04:14 GMT
348
+ recorded_at: Fri, 02 Oct 2015 11:41:22 GMT
279
349
  - request:
280
350
  method: put
281
- uri: http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4/users/aa9f25defa6d4cafb48466df83106065/roles/9eeae75b331946dd907f16d3dccb916a
351
+ uri: http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174/users/a18abc2039d6493aa7239a42033cc7c9/roles/80b1293f341a4651b1886d9e7f71763c
282
352
  body:
283
353
  encoding: US-ASCII
284
354
  string: ''
285
355
  headers:
286
356
  User-Agent:
287
- - fog-core/1.32.0
357
+ - fog-core/1.32.1
358
+ Proxy-Connection:
359
+ - Keep-Alive
288
360
  Content-Type:
289
361
  - application/json
290
362
  Accept:
291
363
  - application/json
292
364
  X-Auth-Token:
293
- - ea1e9622dc8f4802a5f26955ccd8763f
365
+ - f6af15c0332e4d3ab7716b51d8fedfff
294
366
  response:
295
367
  status:
296
368
  code: 204
297
369
  message: ''
298
370
  headers:
299
371
  Date:
300
- - Fri, 24 Jul 2015 11:03:54 GMT
372
+ - Fri, 02 Oct 2015 11:41:34 GMT
301
373
  Server:
302
374
  - Apache/2.4.7 (Ubuntu)
303
375
  Vary:
304
376
  - X-Auth-Token
305
377
  X-Openstack-Request-Id:
306
- - req-895af830-2d83-433d-ba23-8ab43a67483a
378
+ - req-a275c658-7722-40a0-9c2e-1121400ff454
307
379
  Content-Length:
308
380
  - '0'
381
+ X-Cache:
382
+ - MISS from i056593-vagrant
383
+ X-Cache-Lookup:
384
+ - MISS from i056593-vagrant:3128
385
+ Via:
386
+ - 1.1 i056593-vagrant (squid/3.3.8)
387
+ Connection:
388
+ - keep-alive
309
389
  body:
310
- encoding: US-ASCII
390
+ encoding: UTF-8
311
391
  string: ''
312
392
  http_version:
313
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
393
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
314
394
  - request:
315
395
  method: put
316
- uri: http://devstack.openstack.stack:35357/v3/projects/570b1075f2a7470ea2b2f009f440b7b0/users/aa9f25defa6d4cafb48466df83106065/roles/9eeae75b331946dd907f16d3dccb916a
396
+ uri: http://10.97.17.84:35357/v3/projects/579d658f714d4f649ed20c611c7e7d68/users/a18abc2039d6493aa7239a42033cc7c9/roles/80b1293f341a4651b1886d9e7f71763c
317
397
  body:
318
398
  encoding: US-ASCII
319
399
  string: ''
320
400
  headers:
321
401
  User-Agent:
322
- - fog-core/1.32.0
402
+ - fog-core/1.32.1
403
+ Proxy-Connection:
404
+ - Keep-Alive
323
405
  Content-Type:
324
406
  - application/json
325
407
  Accept:
326
408
  - application/json
327
409
  X-Auth-Token:
328
- - ea1e9622dc8f4802a5f26955ccd8763f
410
+ - f6af15c0332e4d3ab7716b51d8fedfff
329
411
  response:
330
412
  status:
331
413
  code: 204
332
414
  message: ''
333
415
  headers:
334
416
  Date:
335
- - Fri, 24 Jul 2015 11:03:54 GMT
417
+ - Fri, 02 Oct 2015 11:41:35 GMT
336
418
  Server:
337
419
  - Apache/2.4.7 (Ubuntu)
338
420
  Vary:
339
421
  - X-Auth-Token
340
422
  X-Openstack-Request-Id:
341
- - req-7f126391-17af-4ca1-a348-fe4280c57450
423
+ - req-4db1201c-c2a8-43f7-baf4-fb4d22bebf73
342
424
  Content-Length:
343
425
  - '0'
426
+ X-Cache:
427
+ - MISS from i056593-vagrant
428
+ X-Cache-Lookup:
429
+ - MISS from i056593-vagrant:3128
430
+ Via:
431
+ - 1.1 i056593-vagrant (squid/3.3.8)
432
+ Connection:
433
+ - keep-alive
344
434
  body:
345
- encoding: US-ASCII
435
+ encoding: UTF-8
346
436
  string: ''
347
437
  http_version:
348
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
438
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
349
439
  - request:
350
440
  method: put
351
- uri: http://devstack.openstack.stack:35357/v3/projects/8e1bc4fbfd6c47fea94d0e6ebad05be6/users/aa9f25defa6d4cafb48466df83106065/roles/9eeae75b331946dd907f16d3dccb916a
441
+ uri: http://10.97.17.84:35357/v3/projects/bcb36c048aa346678e2e328ec6312356/users/a18abc2039d6493aa7239a42033cc7c9/roles/80b1293f341a4651b1886d9e7f71763c
352
442
  body:
353
443
  encoding: US-ASCII
354
444
  string: ''
355
445
  headers:
356
446
  User-Agent:
357
- - fog-core/1.32.0
447
+ - fog-core/1.32.1
448
+ Proxy-Connection:
449
+ - Keep-Alive
358
450
  Content-Type:
359
451
  - application/json
360
452
  Accept:
361
453
  - application/json
362
454
  X-Auth-Token:
363
- - ea1e9622dc8f4802a5f26955ccd8763f
455
+ - f6af15c0332e4d3ab7716b51d8fedfff
364
456
  response:
365
457
  status:
366
458
  code: 204
367
459
  message: ''
368
460
  headers:
369
461
  Date:
370
- - Fri, 24 Jul 2015 11:03:54 GMT
462
+ - Fri, 02 Oct 2015 11:41:35 GMT
371
463
  Server:
372
464
  - Apache/2.4.7 (Ubuntu)
373
465
  Vary:
374
466
  - X-Auth-Token
375
467
  X-Openstack-Request-Id:
376
- - req-91451272-cef2-467c-80aa-5de40998c2f2
468
+ - req-4c6c1f89-4147-433e-9aa0-ed30e5e21a12
377
469
  Content-Length:
378
470
  - '0'
471
+ X-Cache:
472
+ - MISS from i056593-vagrant
473
+ X-Cache-Lookup:
474
+ - MISS from i056593-vagrant:3128
475
+ Via:
476
+ - 1.1 i056593-vagrant (squid/3.3.8)
477
+ Connection:
478
+ - keep-alive
379
479
  body:
380
- encoding: US-ASCII
480
+ encoding: UTF-8
381
481
  string: ''
382
482
  http_version:
383
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
483
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
384
484
  - request:
385
485
  method: put
386
- uri: http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259/users/aa9f25defa6d4cafb48466df83106065/roles/9eeae75b331946dd907f16d3dccb916a
486
+ uri: http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356/users/a18abc2039d6493aa7239a42033cc7c9/roles/80b1293f341a4651b1886d9e7f71763c
387
487
  body:
388
488
  encoding: US-ASCII
389
489
  string: ''
390
490
  headers:
391
491
  User-Agent:
392
- - fog-core/1.32.0
492
+ - fog-core/1.32.1
493
+ Proxy-Connection:
494
+ - Keep-Alive
393
495
  Content-Type:
394
496
  - application/json
395
497
  Accept:
396
498
  - application/json
397
499
  X-Auth-Token:
398
- - ea1e9622dc8f4802a5f26955ccd8763f
500
+ - f6af15c0332e4d3ab7716b51d8fedfff
399
501
  response:
400
502
  status:
401
503
  code: 204
402
504
  message: ''
403
505
  headers:
404
506
  Date:
405
- - Fri, 24 Jul 2015 11:03:54 GMT
507
+ - Fri, 02 Oct 2015 11:41:35 GMT
406
508
  Server:
407
509
  - Apache/2.4.7 (Ubuntu)
408
510
  Vary:
409
511
  - X-Auth-Token
410
512
  X-Openstack-Request-Id:
411
- - req-1cdb03bc-58c5-4d04-b585-19e44ce2d32f
513
+ - req-fec7223d-6df1-449b-ac90-e4f3c50c936a
412
514
  Content-Length:
413
515
  - '0'
516
+ X-Cache:
517
+ - MISS from i056593-vagrant
518
+ X-Cache-Lookup:
519
+ - MISS from i056593-vagrant:3128
520
+ Via:
521
+ - 1.1 i056593-vagrant (squid/3.3.8)
522
+ Connection:
523
+ - keep-alive
414
524
  body:
415
- encoding: US-ASCII
525
+ encoding: UTF-8
416
526
  string: ''
417
527
  http_version:
418
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
528
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
419
529
  - request:
420
530
  method: get
421
- uri: http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4?subtree_as_ids
531
+ uri: http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174?subtree_as_ids
422
532
  body:
423
533
  encoding: US-ASCII
424
534
  string: ''
425
535
  headers:
426
536
  User-Agent:
427
- - fog-core/1.32.0
537
+ - fog-core/1.32.1
538
+ Proxy-Connection:
539
+ - Keep-Alive
428
540
  Content-Type:
429
541
  - application/json
430
542
  Accept:
431
543
  - application/json
432
544
  X-Auth-Token:
433
- - ea1e9622dc8f4802a5f26955ccd8763f
545
+ - f6af15c0332e4d3ab7716b51d8fedfff
434
546
  response:
435
547
  status:
436
548
  code: 200
437
549
  message: ''
438
550
  headers:
439
551
  Date:
440
- - Fri, 24 Jul 2015 11:03:54 GMT
552
+ - Fri, 02 Oct 2015 11:41:35 GMT
441
553
  Server:
442
554
  - Apache/2.4.7 (Ubuntu)
443
555
  Vary:
444
556
  - X-Auth-Token
445
557
  X-Openstack-Request-Id:
446
- - req-0a1a824a-364e-4afc-ba89-91c256128885
558
+ - req-7336ef3f-550c-469e-8c1d-a0d7a5d8293e
447
559
  Content-Length:
448
- - '386'
560
+ - '383'
449
561
  Content-Type:
450
562
  - application/json
563
+ X-Cache:
564
+ - MISS from i056593-vagrant
565
+ X-Cache-Lookup:
566
+ - MISS from i056593-vagrant:3128
567
+ Via:
568
+ - 1.1 i056593-vagrant (squid/3.3.8)
569
+ Connection:
570
+ - keep-alive
451
571
  body:
452
- encoding: US-ASCII
453
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4"},
454
- "enabled": true, "subtree": {"570b1075f2a7470ea2b2f009f440b7b0": null, "8e1bc4fbfd6c47fea94d0e6ebad05be6":
455
- {"15a7ecafe8c44fe18cb9b3ca009f8259": null}}, "id": "edd3bec6a30847349d69216ed4b3e0b4",
572
+ encoding: UTF-8
573
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174"},
574
+ "enabled": true, "subtree": {"bcb36c048aa346678e2e328ec6312356": {"f7e1219aa56843b986f06530f73cc356":
575
+ null}, "579d658f714d4f649ed20c611c7e7d68": null}, "id": "7720c2b0486e4b4e8f98605f1a3a2174",
456
576
  "parent_id": null, "domain_id": "default", "name": "p-foobar67"}}'
457
577
  http_version:
458
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
578
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
459
579
  - request:
460
580
  method: get
461
- uri: http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4?subtree_as_list
581
+ uri: http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174?subtree_as_list
462
582
  body:
463
583
  encoding: US-ASCII
464
584
  string: ''
465
585
  headers:
466
586
  User-Agent:
467
- - fog-core/1.32.0
587
+ - fog-core/1.32.1
588
+ Proxy-Connection:
589
+ - Keep-Alive
468
590
  Content-Type:
469
591
  - application/json
470
592
  Accept:
471
593
  - application/json
472
594
  X-Auth-Token:
473
- - ea1e9622dc8f4802a5f26955ccd8763f
595
+ - f6af15c0332e4d3ab7716b51d8fedfff
474
596
  response:
475
597
  status:
476
598
  code: 200
477
599
  message: ''
478
600
  headers:
479
601
  Date:
480
- - Fri, 24 Jul 2015 11:03:54 GMT
602
+ - Fri, 02 Oct 2015 11:41:35 GMT
481
603
  Server:
482
604
  - Apache/2.4.7 (Ubuntu)
483
605
  Vary:
484
606
  - X-Auth-Token
485
607
  X-Openstack-Request-Id:
486
- - req-b6f5c89d-e9bb-4ab9-9ea7-7ac8c2959b37
608
+ - req-8d1b4525-68b2-48b7-b13a-cb7b2ec5e18b
487
609
  Content-Length:
488
- - '1107'
610
+ - '1095'
489
611
  Content-Type:
490
612
  - application/json
613
+ X-Cache:
614
+ - MISS from i056593-vagrant
615
+ X-Cache-Lookup:
616
+ - MISS from i056593-vagrant:3128
617
+ Via:
618
+ - 1.1 i056593-vagrant (squid/3.3.8)
619
+ Connection:
620
+ - keep-alive
491
621
  body:
492
- encoding: US-ASCII
493
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4"},
622
+ encoding: UTF-8
623
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174"},
494
624
  "enabled": true, "subtree": [{"project": {"description": "", "links": {"self":
495
- "http://devstack.openstack.stack:35357/v3/projects/570b1075f2a7470ea2b2f009f440b7b0"},
496
- "enabled": true, "id": "570b1075f2a7470ea2b2f009f440b7b0", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
625
+ "http://10.97.17.84:35357/v3/projects/579d658f714d4f649ed20c611c7e7d68"},
626
+ "enabled": true, "id": "579d658f714d4f649ed20c611c7e7d68", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
497
627
  "domain_id": "default", "name": "p-baz67"}}, {"project": {"description": "",
498
- "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/8e1bc4fbfd6c47fea94d0e6ebad05be6"},
499
- "enabled": true, "id": "8e1bc4fbfd6c47fea94d0e6ebad05be6", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
628
+ "links": {"self": "http://10.97.17.84:35357/v3/projects/bcb36c048aa346678e2e328ec6312356"},
629
+ "enabled": true, "id": "bcb36c048aa346678e2e328ec6312356", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
500
630
  "domain_id": "default", "name": "p-boo67"}}, {"project": {"description": "",
501
- "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259"},
502
- "enabled": true, "id": "15a7ecafe8c44fe18cb9b3ca009f8259", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
503
- "domain_id": "default", "name": "p-booboo67"}}], "id": "edd3bec6a30847349d69216ed4b3e0b4",
631
+ "links": {"self": "http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356"},
632
+ "enabled": true, "id": "f7e1219aa56843b986f06530f73cc356", "parent_id": "bcb36c048aa346678e2e328ec6312356",
633
+ "domain_id": "default", "name": "p-booboo67"}}], "id": "7720c2b0486e4b4e8f98605f1a3a2174",
504
634
  "parent_id": null, "domain_id": "default", "name": "p-foobar67"}}'
505
635
  http_version:
506
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
636
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
507
637
  - request:
508
638
  method: post
509
- uri: http://devstack.openstack.stack:35357/v3/projects
639
+ uri: http://10.97.17.84:35357/v3/projects
510
640
  body:
511
641
  encoding: UTF-8
512
- string: ! '{"project":{"name":"p-fooboo67","parent_id":"8e1bc4fbfd6c47fea94d0e6ebad05be6"}}'
642
+ string: '{"project":{"name":"p-fooboo67","parent_id":"bcb36c048aa346678e2e328ec6312356"}}'
513
643
  headers:
514
644
  User-Agent:
515
- - fog-core/1.32.0
645
+ - fog-core/1.32.1
646
+ Proxy-Connection:
647
+ - Keep-Alive
516
648
  Content-Type:
517
649
  - application/json
518
650
  Accept:
519
651
  - application/json
520
652
  X-Auth-Token:
521
- - ea1e9622dc8f4802a5f26955ccd8763f
653
+ - f6af15c0332e4d3ab7716b51d8fedfff
522
654
  response:
523
655
  status:
524
656
  code: 201
525
657
  message: ''
526
658
  headers:
527
659
  Date:
528
- - Fri, 24 Jul 2015 11:03:54 GMT
660
+ - Fri, 02 Oct 2015 11:41:35 GMT
529
661
  Server:
530
662
  - Apache/2.4.7 (Ubuntu)
531
663
  Vary:
532
664
  - X-Auth-Token
533
665
  X-Openstack-Request-Id:
534
- - req-7d289ea5-869d-4c95-aa82-194ac4cb805d
666
+ - req-a892614e-63d6-4baa-84c1-9582f9025ff2
535
667
  Content-Length:
536
- - '281'
668
+ - '278'
537
669
  Content-Type:
538
670
  - application/json
671
+ X-Cache:
672
+ - MISS from i056593-vagrant
673
+ X-Cache-Lookup:
674
+ - MISS from i056593-vagrant:3128
675
+ Via:
676
+ - 1.1 i056593-vagrant (squid/3.3.8)
677
+ Connection:
678
+ - keep-alive
539
679
  body:
540
- encoding: US-ASCII
541
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/a288e7f1645e442da84232108c7e3ec9"},
542
- "enabled": true, "id": "a288e7f1645e442da84232108c7e3ec9", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
680
+ encoding: UTF-8
681
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/b49862517c3c45018e5b6d5cc164469d"},
682
+ "enabled": true, "id": "b49862517c3c45018e5b6d5cc164469d", "parent_id": "bcb36c048aa346678e2e328ec6312356",
543
683
  "domain_id": "default", "name": "p-fooboo67"}}'
544
684
  http_version:
545
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
685
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
546
686
  - request:
547
687
  method: put
548
- uri: http://devstack.openstack.stack:35357/v3/projects/a288e7f1645e442da84232108c7e3ec9/users/aa9f25defa6d4cafb48466df83106065/roles/9eeae75b331946dd907f16d3dccb916a
688
+ uri: http://10.97.17.84:35357/v3/projects/b49862517c3c45018e5b6d5cc164469d/users/a18abc2039d6493aa7239a42033cc7c9/roles/80b1293f341a4651b1886d9e7f71763c
549
689
  body:
550
690
  encoding: US-ASCII
551
691
  string: ''
552
692
  headers:
553
693
  User-Agent:
554
- - fog-core/1.32.0
694
+ - fog-core/1.32.1
695
+ Proxy-Connection:
696
+ - Keep-Alive
555
697
  Content-Type:
556
698
  - application/json
557
699
  Accept:
558
700
  - application/json
559
701
  X-Auth-Token:
560
- - ea1e9622dc8f4802a5f26955ccd8763f
702
+ - f6af15c0332e4d3ab7716b51d8fedfff
561
703
  response:
562
704
  status:
563
705
  code: 204
564
706
  message: ''
565
707
  headers:
566
708
  Date:
567
- - Fri, 24 Jul 2015 11:03:54 GMT
709
+ - Fri, 02 Oct 2015 11:41:35 GMT
568
710
  Server:
569
711
  - Apache/2.4.7 (Ubuntu)
570
712
  Vary:
571
713
  - X-Auth-Token
572
714
  X-Openstack-Request-Id:
573
- - req-9a87ff8d-26a2-43fb-ad63-cf03e2324854
715
+ - req-a8704538-6d2e-49c1-a315-c0a3f299a70e
574
716
  Content-Length:
575
717
  - '0'
718
+ X-Cache:
719
+ - MISS from i056593-vagrant
720
+ X-Cache-Lookup:
721
+ - MISS from i056593-vagrant:3128
722
+ Via:
723
+ - 1.1 i056593-vagrant (squid/3.3.8)
724
+ Connection:
725
+ - keep-alive
576
726
  body:
577
- encoding: US-ASCII
727
+ encoding: UTF-8
578
728
  string: ''
579
729
  http_version:
580
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
730
+ recorded_at: Fri, 02 Oct 2015 11:41:23 GMT
581
731
  - request:
582
732
  method: get
583
- uri: http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4?subtree_as_list
733
+ uri: http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174?subtree_as_list
584
734
  body:
585
735
  encoding: US-ASCII
586
736
  string: ''
587
737
  headers:
588
738
  User-Agent:
589
- - fog-core/1.32.0
739
+ - fog-core/1.32.1
740
+ Proxy-Connection:
741
+ - Keep-Alive
590
742
  Content-Type:
591
743
  - application/json
592
744
  Accept:
593
745
  - application/json
594
746
  X-Auth-Token:
595
- - ea1e9622dc8f4802a5f26955ccd8763f
747
+ - f6af15c0332e4d3ab7716b51d8fedfff
596
748
  response:
597
749
  status:
598
750
  code: 200
599
751
  message: ''
600
752
  headers:
601
753
  Date:
602
- - Fri, 24 Jul 2015 11:03:54 GMT
754
+ - Fri, 02 Oct 2015 11:41:35 GMT
603
755
  Server:
604
756
  - Apache/2.4.7 (Ubuntu)
605
757
  Vary:
606
758
  - X-Auth-Token
607
759
  X-Openstack-Request-Id:
608
- - req-bee9ca26-a2e6-401b-95da-041161d09bde
760
+ - req-b08b2c24-6943-4482-9f72-3593dbb09023
609
761
  Content-Length:
610
- - '1390'
762
+ - '1375'
611
763
  Content-Type:
612
764
  - application/json
765
+ X-Cache:
766
+ - MISS from i056593-vagrant
767
+ X-Cache-Lookup:
768
+ - MISS from i056593-vagrant:3128
769
+ Via:
770
+ - 1.1 i056593-vagrant (squid/3.3.8)
771
+ Connection:
772
+ - keep-alive
613
773
  body:
614
- encoding: US-ASCII
615
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4"},
774
+ encoding: UTF-8
775
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174"},
616
776
  "enabled": true, "subtree": [{"project": {"description": "", "links": {"self":
617
- "http://devstack.openstack.stack:35357/v3/projects/570b1075f2a7470ea2b2f009f440b7b0"},
618
- "enabled": true, "id": "570b1075f2a7470ea2b2f009f440b7b0", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
777
+ "http://10.97.17.84:35357/v3/projects/579d658f714d4f649ed20c611c7e7d68"},
778
+ "enabled": true, "id": "579d658f714d4f649ed20c611c7e7d68", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
619
779
  "domain_id": "default", "name": "p-baz67"}}, {"project": {"description": "",
620
- "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/8e1bc4fbfd6c47fea94d0e6ebad05be6"},
621
- "enabled": true, "id": "8e1bc4fbfd6c47fea94d0e6ebad05be6", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
780
+ "links": {"self": "http://10.97.17.84:35357/v3/projects/bcb36c048aa346678e2e328ec6312356"},
781
+ "enabled": true, "id": "bcb36c048aa346678e2e328ec6312356", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
622
782
  "domain_id": "default", "name": "p-boo67"}}, {"project": {"description": "",
623
- "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259"},
624
- "enabled": true, "id": "15a7ecafe8c44fe18cb9b3ca009f8259", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
625
- "domain_id": "default", "name": "p-booboo67"}}, {"project": {"description":
626
- "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/a288e7f1645e442da84232108c7e3ec9"},
627
- "enabled": true, "id": "a288e7f1645e442da84232108c7e3ec9", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
628
- "domain_id": "default", "name": "p-fooboo67"}}], "id": "edd3bec6a30847349d69216ed4b3e0b4",
783
+ "links": {"self": "http://10.97.17.84:35357/v3/projects/b49862517c3c45018e5b6d5cc164469d"},
784
+ "enabled": true, "id": "b49862517c3c45018e5b6d5cc164469d", "parent_id": "bcb36c048aa346678e2e328ec6312356",
785
+ "domain_id": "default", "name": "p-fooboo67"}}, {"project": {"description":
786
+ "", "links": {"self": "http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356"},
787
+ "enabled": true, "id": "f7e1219aa56843b986f06530f73cc356", "parent_id": "bcb36c048aa346678e2e328ec6312356",
788
+ "domain_id": "default", "name": "p-booboo67"}}], "id": "7720c2b0486e4b4e8f98605f1a3a2174",
629
789
  "parent_id": null, "domain_id": "default", "name": "p-foobar67"}}'
630
790
  http_version:
631
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
791
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
632
792
  - request:
633
793
  method: get
634
- uri: http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259?parents_as_ids
794
+ uri: http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356?parents_as_ids
635
795
  body:
636
796
  encoding: US-ASCII
637
797
  string: ''
638
798
  headers:
639
799
  User-Agent:
640
- - fog-core/1.32.0
800
+ - fog-core/1.32.1
801
+ Proxy-Connection:
802
+ - Keep-Alive
641
803
  Content-Type:
642
804
  - application/json
643
805
  Accept:
644
806
  - application/json
645
807
  X-Auth-Token:
646
- - ea1e9622dc8f4802a5f26955ccd8763f
808
+ - f6af15c0332e4d3ab7716b51d8fedfff
647
809
  response:
648
810
  status:
649
811
  code: 200
650
812
  message: ''
651
813
  headers:
652
814
  Date:
653
- - Fri, 24 Jul 2015 11:03:54 GMT
815
+ - Fri, 02 Oct 2015 11:41:36 GMT
654
816
  Server:
655
817
  - Apache/2.4.7 (Ubuntu)
656
818
  Vary:
657
819
  - X-Auth-Token
658
820
  X-Openstack-Request-Id:
659
- - req-00f313f0-b3e0-4039-b246-cb2bd06dd51f
821
+ - req-ef3f89a3-262b-4223-b859-53b5f15df5d5
660
822
  Content-Length:
661
- - '374'
823
+ - '371'
662
824
  Content-Type:
663
825
  - application/json
826
+ X-Cache:
827
+ - MISS from i056593-vagrant
828
+ X-Cache-Lookup:
829
+ - MISS from i056593-vagrant:3128
830
+ Via:
831
+ - 1.1 i056593-vagrant (squid/3.3.8)
832
+ Connection:
833
+ - keep-alive
664
834
  body:
665
- encoding: US-ASCII
666
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259"},
667
- "enabled": true, "id": "15a7ecafe8c44fe18cb9b3ca009f8259", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
668
- "parents": {"8e1bc4fbfd6c47fea94d0e6ebad05be6": {"edd3bec6a30847349d69216ed4b3e0b4":
835
+ encoding: UTF-8
836
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356"},
837
+ "enabled": true, "id": "f7e1219aa56843b986f06530f73cc356", "parent_id": "bcb36c048aa346678e2e328ec6312356",
838
+ "parents": {"bcb36c048aa346678e2e328ec6312356": {"7720c2b0486e4b4e8f98605f1a3a2174":
669
839
  null}}, "domain_id": "default", "name": "p-booboo67"}}'
670
840
  http_version:
671
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
841
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
672
842
  - request:
673
843
  method: get
674
- uri: http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259?parents_as_list
844
+ uri: http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356?parents_as_list
675
845
  body:
676
846
  encoding: US-ASCII
677
847
  string: ''
678
848
  headers:
679
849
  User-Agent:
680
- - fog-core/1.32.0
850
+ - fog-core/1.32.1
851
+ Proxy-Connection:
852
+ - Keep-Alive
681
853
  Content-Type:
682
854
  - application/json
683
855
  Accept:
684
856
  - application/json
685
857
  X-Auth-Token:
686
- - ea1e9622dc8f4802a5f26955ccd8763f
858
+ - f6af15c0332e4d3ab7716b51d8fedfff
687
859
  response:
688
860
  status:
689
861
  code: 200
690
862
  message: ''
691
863
  headers:
692
864
  Date:
693
- - Fri, 24 Jul 2015 11:03:54 GMT
865
+ - Fri, 02 Oct 2015 11:41:36 GMT
694
866
  Server:
695
867
  - Apache/2.4.7 (Ubuntu)
696
868
  Vary:
697
869
  - X-Auth-Token
698
870
  X-Openstack-Request-Id:
699
- - req-343c722a-65c6-4427-8782-b370cca8be6c
871
+ - req-ef1ac269-556b-4add-b730-617bc46206ab
700
872
  Content-Length:
701
- - '827'
873
+ - '818'
702
874
  Content-Type:
703
875
  - application/json
876
+ X-Cache:
877
+ - MISS from i056593-vagrant
878
+ X-Cache-Lookup:
879
+ - MISS from i056593-vagrant:3128
880
+ Via:
881
+ - 1.1 i056593-vagrant (squid/3.3.8)
882
+ Connection:
883
+ - keep-alive
704
884
  body:
705
- encoding: US-ASCII
706
- string: ! '{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259"},
707
- "enabled": true, "id": "15a7ecafe8c44fe18cb9b3ca009f8259", "parent_id": "8e1bc4fbfd6c47fea94d0e6ebad05be6",
708
- "parents": [{"project": {"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/8e1bc4fbfd6c47fea94d0e6ebad05be6"},
709
- "enabled": true, "id": "8e1bc4fbfd6c47fea94d0e6ebad05be6", "parent_id": "edd3bec6a30847349d69216ed4b3e0b4",
885
+ encoding: UTF-8
886
+ string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356"},
887
+ "enabled": true, "id": "f7e1219aa56843b986f06530f73cc356", "parent_id": "bcb36c048aa346678e2e328ec6312356",
888
+ "parents": [{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/bcb36c048aa346678e2e328ec6312356"},
889
+ "enabled": true, "id": "bcb36c048aa346678e2e328ec6312356", "parent_id": "7720c2b0486e4b4e8f98605f1a3a2174",
710
890
  "domain_id": "default", "name": "p-boo67"}}, {"project": {"description": "",
711
- "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4"},
712
- "enabled": true, "id": "edd3bec6a30847349d69216ed4b3e0b4", "parent_id": null,
891
+ "links": {"self": "http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174"},
892
+ "enabled": true, "id": "7720c2b0486e4b4e8f98605f1a3a2174", "parent_id": null,
713
893
  "domain_id": "default", "name": "p-foobar67"}}], "domain_id": "default", "name":
714
894
  "p-booboo67"}}'
715
895
  http_version:
716
- recorded_at: Fri, 24 Jul 2015 11:04:15 GMT
896
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
717
897
  - request:
718
898
  method: delete
719
- uri: http://devstack.openstack.stack:35357/v3/projects/a288e7f1645e442da84232108c7e3ec9
899
+ uri: http://10.97.17.84:35357/v3/projects/b49862517c3c45018e5b6d5cc164469d
720
900
  body:
721
901
  encoding: US-ASCII
722
902
  string: ''
723
903
  headers:
724
904
  User-Agent:
725
- - fog-core/1.32.0
905
+ - fog-core/1.32.1
906
+ Proxy-Connection:
907
+ - Keep-Alive
726
908
  Content-Type:
727
909
  - application/json
728
910
  Accept:
729
911
  - application/json
730
912
  X-Auth-Token:
731
- - ea1e9622dc8f4802a5f26955ccd8763f
913
+ - f6af15c0332e4d3ab7716b51d8fedfff
732
914
  response:
733
915
  status:
734
916
  code: 204
735
917
  message: ''
736
918
  headers:
737
919
  Date:
738
- - Fri, 24 Jul 2015 11:03:55 GMT
920
+ - Fri, 02 Oct 2015 11:41:36 GMT
739
921
  Server:
740
922
  - Apache/2.4.7 (Ubuntu)
741
923
  Vary:
742
924
  - X-Auth-Token
743
925
  X-Openstack-Request-Id:
744
- - req-3e964bce-b106-4edf-bcdc-6da3d74f7f7c
926
+ - req-0459e8fa-394a-4c84-92c7-7326abb35553
745
927
  Content-Length:
746
928
  - '0'
929
+ X-Cache:
930
+ - MISS from i056593-vagrant
931
+ X-Cache-Lookup:
932
+ - MISS from i056593-vagrant:3128
933
+ Via:
934
+ - 1.1 i056593-vagrant (squid/3.3.8)
935
+ Connection:
936
+ - keep-alive
747
937
  body:
748
- encoding: US-ASCII
938
+ encoding: UTF-8
749
939
  string: ''
750
940
  http_version:
751
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
941
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
752
942
  - request:
753
943
  method: delete
754
- uri: http://devstack.openstack.stack:35357/v3/projects/15a7ecafe8c44fe18cb9b3ca009f8259
944
+ uri: http://10.97.17.84:35357/v3/projects/f7e1219aa56843b986f06530f73cc356
755
945
  body:
756
946
  encoding: US-ASCII
757
947
  string: ''
758
948
  headers:
759
949
  User-Agent:
760
- - fog-core/1.32.0
950
+ - fog-core/1.32.1
951
+ Proxy-Connection:
952
+ - Keep-Alive
761
953
  Content-Type:
762
954
  - application/json
763
955
  Accept:
764
956
  - application/json
765
957
  X-Auth-Token:
766
- - ea1e9622dc8f4802a5f26955ccd8763f
958
+ - f6af15c0332e4d3ab7716b51d8fedfff
767
959
  response:
768
960
  status:
769
961
  code: 204
770
962
  message: ''
771
963
  headers:
772
964
  Date:
773
- - Fri, 24 Jul 2015 11:03:55 GMT
965
+ - Fri, 02 Oct 2015 11:41:36 GMT
774
966
  Server:
775
967
  - Apache/2.4.7 (Ubuntu)
776
968
  Vary:
777
969
  - X-Auth-Token
778
970
  X-Openstack-Request-Id:
779
- - req-e0cd202d-c96f-4b82-b9e9-29650111b15e
971
+ - req-41b5e2d1-6925-4206-9f40-77579327de9b
780
972
  Content-Length:
781
973
  - '0'
974
+ X-Cache:
975
+ - MISS from i056593-vagrant
976
+ X-Cache-Lookup:
977
+ - MISS from i056593-vagrant:3128
978
+ Via:
979
+ - 1.1 i056593-vagrant (squid/3.3.8)
980
+ Connection:
981
+ - keep-alive
782
982
  body:
783
- encoding: US-ASCII
983
+ encoding: UTF-8
784
984
  string: ''
785
985
  http_version:
786
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
986
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
787
987
  - request:
788
988
  method: delete
789
- uri: http://devstack.openstack.stack:35357/v3/projects/8e1bc4fbfd6c47fea94d0e6ebad05be6
989
+ uri: http://10.97.17.84:35357/v3/projects/bcb36c048aa346678e2e328ec6312356
790
990
  body:
791
991
  encoding: US-ASCII
792
992
  string: ''
793
993
  headers:
794
994
  User-Agent:
795
- - fog-core/1.32.0
995
+ - fog-core/1.32.1
996
+ Proxy-Connection:
997
+ - Keep-Alive
796
998
  Content-Type:
797
999
  - application/json
798
1000
  Accept:
799
1001
  - application/json
800
1002
  X-Auth-Token:
801
- - ea1e9622dc8f4802a5f26955ccd8763f
1003
+ - f6af15c0332e4d3ab7716b51d8fedfff
802
1004
  response:
803
1005
  status:
804
1006
  code: 204
805
1007
  message: ''
806
1008
  headers:
807
1009
  Date:
808
- - Fri, 24 Jul 2015 11:03:55 GMT
1010
+ - Fri, 02 Oct 2015 11:41:36 GMT
809
1011
  Server:
810
1012
  - Apache/2.4.7 (Ubuntu)
811
1013
  Vary:
812
1014
  - X-Auth-Token
813
1015
  X-Openstack-Request-Id:
814
- - req-70eb87e6-a48c-4b76-8aa7-f2924b1aadc6
1016
+ - req-bfe40769-32f7-4149-b2b2-490b3b1ecb25
815
1017
  Content-Length:
816
1018
  - '0'
1019
+ X-Cache:
1020
+ - MISS from i056593-vagrant
1021
+ X-Cache-Lookup:
1022
+ - MISS from i056593-vagrant:3128
1023
+ Via:
1024
+ - 1.1 i056593-vagrant (squid/3.3.8)
1025
+ Connection:
1026
+ - keep-alive
817
1027
  body:
818
- encoding: US-ASCII
1028
+ encoding: UTF-8
819
1029
  string: ''
820
1030
  http_version:
821
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1031
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
822
1032
  - request:
823
1033
  method: delete
824
- uri: http://devstack.openstack.stack:35357/v3/projects/570b1075f2a7470ea2b2f009f440b7b0
1034
+ uri: http://10.97.17.84:35357/v3/projects/579d658f714d4f649ed20c611c7e7d68
825
1035
  body:
826
1036
  encoding: US-ASCII
827
1037
  string: ''
828
1038
  headers:
829
1039
  User-Agent:
830
- - fog-core/1.32.0
1040
+ - fog-core/1.32.1
1041
+ Proxy-Connection:
1042
+ - Keep-Alive
831
1043
  Content-Type:
832
1044
  - application/json
833
1045
  Accept:
834
1046
  - application/json
835
1047
  X-Auth-Token:
836
- - ea1e9622dc8f4802a5f26955ccd8763f
1048
+ - f6af15c0332e4d3ab7716b51d8fedfff
837
1049
  response:
838
1050
  status:
839
1051
  code: 204
840
1052
  message: ''
841
1053
  headers:
842
1054
  Date:
843
- - Fri, 24 Jul 2015 11:03:55 GMT
1055
+ - Fri, 02 Oct 2015 11:41:36 GMT
844
1056
  Server:
845
1057
  - Apache/2.4.7 (Ubuntu)
846
1058
  Vary:
847
1059
  - X-Auth-Token
848
1060
  X-Openstack-Request-Id:
849
- - req-997cf019-3a7a-4185-82bb-34a47e38bc21
1061
+ - req-a2bd832d-d066-4a59-b2ba-3cfaabbf33d7
850
1062
  Content-Length:
851
1063
  - '0'
1064
+ X-Cache:
1065
+ - MISS from i056593-vagrant
1066
+ X-Cache-Lookup:
1067
+ - MISS from i056593-vagrant:3128
1068
+ Via:
1069
+ - 1.1 i056593-vagrant (squid/3.3.8)
1070
+ Connection:
1071
+ - keep-alive
852
1072
  body:
853
- encoding: US-ASCII
1073
+ encoding: UTF-8
854
1074
  string: ''
855
1075
  http_version:
856
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1076
+ recorded_at: Fri, 02 Oct 2015 11:41:24 GMT
857
1077
  - request:
858
1078
  method: delete
859
- uri: http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4
1079
+ uri: http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174
860
1080
  body:
861
1081
  encoding: US-ASCII
862
1082
  string: ''
863
1083
  headers:
864
1084
  User-Agent:
865
- - fog-core/1.32.0
1085
+ - fog-core/1.32.1
1086
+ Proxy-Connection:
1087
+ - Keep-Alive
866
1088
  Content-Type:
867
1089
  - application/json
868
1090
  Accept:
869
1091
  - application/json
870
1092
  X-Auth-Token:
871
- - ea1e9622dc8f4802a5f26955ccd8763f
1093
+ - f6af15c0332e4d3ab7716b51d8fedfff
872
1094
  response:
873
1095
  status:
874
1096
  code: 204
875
1097
  message: ''
876
1098
  headers:
877
1099
  Date:
878
- - Fri, 24 Jul 2015 11:03:55 GMT
1100
+ - Fri, 02 Oct 2015 11:41:36 GMT
879
1101
  Server:
880
1102
  - Apache/2.4.7 (Ubuntu)
881
1103
  Vary:
882
1104
  - X-Auth-Token
883
1105
  X-Openstack-Request-Id:
884
- - req-db82b42c-b459-4e5a-9bd8-cb5243f01213
1106
+ - req-0dff5212-e001-4bf5-aa91-f85a31269437
885
1107
  Content-Length:
886
1108
  - '0'
1109
+ X-Cache:
1110
+ - MISS from i056593-vagrant
1111
+ X-Cache-Lookup:
1112
+ - MISS from i056593-vagrant:3128
1113
+ Via:
1114
+ - 1.1 i056593-vagrant (squid/3.3.8)
1115
+ Connection:
1116
+ - keep-alive
887
1117
  body:
888
- encoding: US-ASCII
1118
+ encoding: UTF-8
889
1119
  string: ''
890
1120
  http_version:
891
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1121
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
892
1122
  - request:
893
1123
  method: delete
894
- uri: http://devstack.openstack.stack:35357/v3/roles/9eeae75b331946dd907f16d3dccb916a
1124
+ uri: http://10.97.17.84:35357/v3/roles/80b1293f341a4651b1886d9e7f71763c
895
1125
  body:
896
1126
  encoding: US-ASCII
897
1127
  string: ''
898
1128
  headers:
899
1129
  User-Agent:
900
- - fog-core/1.32.0
1130
+ - fog-core/1.32.1
1131
+ Proxy-Connection:
1132
+ - Keep-Alive
901
1133
  Content-Type:
902
1134
  - application/json
903
1135
  Accept:
904
1136
  - application/json
905
1137
  X-Auth-Token:
906
- - ea1e9622dc8f4802a5f26955ccd8763f
1138
+ - f6af15c0332e4d3ab7716b51d8fedfff
907
1139
  response:
908
1140
  status:
909
1141
  code: 204
910
1142
  message: ''
911
1143
  headers:
912
1144
  Date:
913
- - Fri, 24 Jul 2015 11:03:55 GMT
1145
+ - Fri, 02 Oct 2015 11:41:37 GMT
914
1146
  Server:
915
1147
  - Apache/2.4.7 (Ubuntu)
916
1148
  Vary:
917
1149
  - X-Auth-Token
918
1150
  X-Openstack-Request-Id:
919
- - req-f3093cb8-4a6e-4510-8121-eb8829aa78e4
1151
+ - req-03cba247-7730-428a-8dd2-be2190c610c2
920
1152
  Content-Length:
921
1153
  - '0'
1154
+ X-Cache:
1155
+ - MISS from i056593-vagrant
1156
+ X-Cache-Lookup:
1157
+ - MISS from i056593-vagrant:3128
1158
+ Via:
1159
+ - 1.1 i056593-vagrant (squid/3.3.8)
1160
+ Connection:
1161
+ - keep-alive
922
1162
  body:
923
- encoding: US-ASCII
1163
+ encoding: UTF-8
924
1164
  string: ''
925
1165
  http_version:
926
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1166
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
927
1167
  - request:
928
1168
  method: get
929
- uri: http://devstack.openstack.stack:35357/v3/projects
1169
+ uri: http://10.97.17.84:35357/v3/projects
930
1170
  body:
931
1171
  encoding: US-ASCII
932
1172
  string: ''
933
1173
  headers:
934
1174
  User-Agent:
935
- - fog-core/1.32.0
1175
+ - fog-core/1.32.1
1176
+ Proxy-Connection:
1177
+ - Keep-Alive
936
1178
  Content-Type:
937
1179
  - application/json
938
1180
  Accept:
939
1181
  - application/json
940
1182
  X-Auth-Token:
941
- - ea1e9622dc8f4802a5f26955ccd8763f
1183
+ - f6af15c0332e4d3ab7716b51d8fedfff
942
1184
  response:
943
1185
  status:
944
1186
  code: 200
945
1187
  message: ''
946
1188
  headers:
947
1189
  Date:
948
- - Fri, 24 Jul 2015 11:03:55 GMT
1190
+ - Fri, 02 Oct 2015 11:41:37 GMT
949
1191
  Server:
950
1192
  - Apache/2.4.7 (Ubuntu)
951
1193
  Vary:
952
1194
  - X-Auth-Token
953
1195
  X-Openstack-Request-Id:
954
- - req-11d93c10-819b-4af0-955c-728e195b9fdc
1196
+ - req-a718b05f-5f4f-4443-87e5-8fc368470494
955
1197
  Content-Length:
956
- - '1062'
1198
+ - '1055'
957
1199
  Content-Type:
958
1200
  - application/json
1201
+ X-Cache:
1202
+ - MISS from i056593-vagrant
1203
+ X-Cache-Lookup:
1204
+ - MISS from i056593-vagrant:3128
1205
+ Via:
1206
+ - 1.1 i056593-vagrant (squid/3.3.8)
1207
+ Connection:
1208
+ - keep-alive
959
1209
  body:
960
- encoding: US-ASCII
961
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects", "previous":
962
- null, "next": null}, "projects": [{"description": "", "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/287f46e0cc294b8cb0c276dd71b8710f"},
963
- "enabled": true, "id": "287f46e0cc294b8cb0c276dd71b8710f", "parent_id": null,
964
- "domain_id": "default", "name": "demo"}, {"description": "", "links": {"self":
965
- "http://devstack.openstack.stack:35357/v3/projects/4bd6ed0a80b7465a8b25f4d7df1236ea"},
966
- "enabled": true, "id": "4bd6ed0a80b7465a8b25f4d7df1236ea", "parent_id": null,
967
- "domain_id": "default", "name": "invisible_to_admin"}, {"description": "",
968
- "links": {"self": "http://devstack.openstack.stack:35357/v3/projects/711f0a64ef5046c084ce904b4445d119"},
969
- "enabled": true, "id": "711f0a64ef5046c084ce904b4445d119", "parent_id": null,
970
- "domain_id": "default", "name": "admin"}, {"description": "", "links": {"self":
971
- "http://devstack.openstack.stack:35357/v3/projects/a9088d7853b843318cb026dc3373c174"},
972
- "enabled": true, "id": "a9088d7853b843318cb026dc3373c174", "parent_id": null,
973
- "domain_id": "default", "name": "service"}]}'
1210
+ encoding: UTF-8
1211
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects", "previous":
1212
+ null, "next": null}, "projects": [{"description": null, "links": {"self":
1213
+ "http://10.97.17.84:35357/v3/projects/7695231df10d4cb5b6b5a1f74cb20c1d"},
1214
+ "enabled": true, "id": "7695231df10d4cb5b6b5a1f74cb20c1d", "parent_id": null,
1215
+ "domain_id": "default", "name": "service"}, {"description": null, "links":
1216
+ {"self": "http://10.97.17.84:35357/v3/projects/a6266e6f4a56471da988788dd2a15c27"},
1217
+ "enabled": true, "id": "a6266e6f4a56471da988788dd2a15c27", "parent_id": null,
1218
+ "domain_id": "default", "name": "invisible_to_admin"}, {"description": null,
1219
+ "links": {"self": "http://10.97.17.84:35357/v3/projects/ca6707581327490398bf1f68fe396a5a"},
1220
+ "enabled": true, "id": "ca6707581327490398bf1f68fe396a5a", "parent_id": null,
1221
+ "domain_id": "default", "name": "demo"}, {"description": null, "links": {"self":
1222
+ "http://10.97.17.84:35357/v3/projects/ded5a6e0922c4be59e7c15517cfb89ee"},
1223
+ "enabled": true, "id": "ded5a6e0922c4be59e7c15517cfb89ee", "parent_id": null,
1224
+ "domain_id": "default", "name": "admin"}]}'
974
1225
  http_version:
975
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1226
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
976
1227
  - request:
977
1228
  method: get
978
- uri: http://devstack.openstack.stack:35357/v3/projects/edd3bec6a30847349d69216ed4b3e0b4
1229
+ uri: http://10.97.17.84:35357/v3/projects/7720c2b0486e4b4e8f98605f1a3a2174
979
1230
  body:
980
1231
  encoding: US-ASCII
981
1232
  string: ''
982
1233
  headers:
983
1234
  User-Agent:
984
- - fog-core/1.32.0
1235
+ - fog-core/1.32.1
1236
+ Proxy-Connection:
1237
+ - Keep-Alive
985
1238
  Content-Type:
986
1239
  - application/json
987
1240
  Accept:
988
1241
  - application/json
989
1242
  X-Auth-Token:
990
- - ea1e9622dc8f4802a5f26955ccd8763f
1243
+ - f6af15c0332e4d3ab7716b51d8fedfff
991
1244
  response:
992
1245
  status:
993
1246
  code: 404
994
1247
  message: ''
995
1248
  headers:
996
1249
  Date:
997
- - Fri, 24 Jul 2015 11:03:55 GMT
1250
+ - Fri, 02 Oct 2015 11:41:37 GMT
998
1251
  Server:
999
1252
  - Apache/2.4.7 (Ubuntu)
1000
1253
  Vary:
1001
1254
  - X-Auth-Token
1002
1255
  X-Openstack-Request-Id:
1003
- - req-015abdc2-1a35-43d3-bc65-c63f5f2dc272
1256
+ - req-7842ff11-6d1c-4012-ae8d-4cab9bb42d0b
1004
1257
  Content-Length:
1005
1258
  - '117'
1006
1259
  Content-Type:
1007
1260
  - application/json
1261
+ X-Cache:
1262
+ - MISS from i056593-vagrant
1263
+ X-Cache-Lookup:
1264
+ - MISS from i056593-vagrant:3128
1265
+ Via:
1266
+ - 1.1 i056593-vagrant (squid/3.3.8)
1267
+ Connection:
1268
+ - keep-alive
1008
1269
  body:
1009
- encoding: US-ASCII
1010
- string: ! '{"error": {"message": "Could not find project: edd3bec6a30847349d69216ed4b3e0b4",
1270
+ encoding: UTF-8
1271
+ string: '{"error": {"message": "Could not find project: 7720c2b0486e4b4e8f98605f1a3a2174",
1011
1272
  "code": 404, "title": "Not Found"}}'
1012
1273
  http_version:
1013
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1274
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1014
1275
  - request:
1015
1276
  method: get
1016
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-booboo67
1277
+ uri: http://10.97.17.84:35357/v3/projects?name=p-booboo67
1017
1278
  body:
1018
1279
  encoding: US-ASCII
1019
1280
  string: ''
1020
1281
  headers:
1021
1282
  User-Agent:
1022
- - fog-core/1.32.0
1283
+ - fog-core/1.32.1
1284
+ Proxy-Connection:
1285
+ - Keep-Alive
1023
1286
  Content-Type:
1024
1287
  - application/json
1025
1288
  Accept:
1026
1289
  - application/json
1027
1290
  X-Auth-Token:
1028
- - ea1e9622dc8f4802a5f26955ccd8763f
1291
+ - f6af15c0332e4d3ab7716b51d8fedfff
1029
1292
  response:
1030
1293
  status:
1031
1294
  code: 200
1032
1295
  message: ''
1033
1296
  headers:
1034
1297
  Date:
1035
- - Fri, 24 Jul 2015 11:03:55 GMT
1298
+ - Fri, 02 Oct 2015 11:41:37 GMT
1036
1299
  Server:
1037
1300
  - Apache/2.4.7 (Ubuntu)
1038
1301
  Vary:
1039
1302
  - X-Auth-Token
1040
1303
  X-Openstack-Request-Id:
1041
- - req-f02cc3be-a027-491d-9e8a-bb9228e0d4e1
1304
+ - req-a249beff-8829-4fa1-a4d4-c9e173951bc2
1042
1305
  Content-Length:
1043
- - '126'
1306
+ - '123'
1044
1307
  Content-Type:
1045
1308
  - application/json
1309
+ X-Cache:
1310
+ - MISS from i056593-vagrant
1311
+ X-Cache-Lookup:
1312
+ - MISS from i056593-vagrant:3128
1313
+ Via:
1314
+ - 1.1 i056593-vagrant (squid/3.3.8)
1315
+ Connection:
1316
+ - keep-alive
1046
1317
  body:
1047
- encoding: US-ASCII
1048
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-booboo67",
1318
+ encoding: UTF-8
1319
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-booboo67",
1049
1320
  "previous": null, "next": null}, "projects": []}'
1050
1321
  http_version:
1051
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1322
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1052
1323
  - request:
1053
1324
  method: get
1054
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-booboo67
1325
+ uri: http://10.97.17.84:35357/v3/projects?name=p-booboo67
1055
1326
  body:
1056
1327
  encoding: US-ASCII
1057
1328
  string: ''
1058
1329
  headers:
1059
1330
  User-Agent:
1060
- - fog-core/1.32.0
1331
+ - fog-core/1.32.1
1332
+ Proxy-Connection:
1333
+ - Keep-Alive
1061
1334
  Content-Type:
1062
1335
  - application/json
1063
1336
  Accept:
1064
1337
  - application/json
1065
1338
  X-Auth-Token:
1066
- - ea1e9622dc8f4802a5f26955ccd8763f
1339
+ - f6af15c0332e4d3ab7716b51d8fedfff
1067
1340
  response:
1068
1341
  status:
1069
1342
  code: 200
1070
1343
  message: ''
1071
1344
  headers:
1072
1345
  Date:
1073
- - Fri, 24 Jul 2015 11:03:55 GMT
1346
+ - Fri, 02 Oct 2015 11:41:37 GMT
1074
1347
  Server:
1075
1348
  - Apache/2.4.7 (Ubuntu)
1076
1349
  Vary:
1077
1350
  - X-Auth-Token
1078
1351
  X-Openstack-Request-Id:
1079
- - req-83df3490-b901-4889-a900-a18e9a12c09f
1352
+ - req-9a534762-648f-47cb-8aac-6986e20e69af
1080
1353
  Content-Length:
1081
- - '126'
1354
+ - '123'
1082
1355
  Content-Type:
1083
1356
  - application/json
1357
+ X-Cache:
1358
+ - MISS from i056593-vagrant
1359
+ X-Cache-Lookup:
1360
+ - MISS from i056593-vagrant:3128
1361
+ Via:
1362
+ - 1.1 i056593-vagrant (squid/3.3.8)
1363
+ Connection:
1364
+ - keep-alive
1084
1365
  body:
1085
- encoding: US-ASCII
1086
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-booboo67",
1366
+ encoding: UTF-8
1367
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-booboo67",
1087
1368
  "previous": null, "next": null}, "projects": []}'
1088
1369
  http_version:
1089
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1370
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1090
1371
  - request:
1091
1372
  method: get
1092
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-fooboo67
1373
+ uri: http://10.97.17.84:35357/v3/projects?name=p-fooboo67
1093
1374
  body:
1094
1375
  encoding: US-ASCII
1095
1376
  string: ''
1096
1377
  headers:
1097
1378
  User-Agent:
1098
- - fog-core/1.32.0
1379
+ - fog-core/1.32.1
1380
+ Proxy-Connection:
1381
+ - Keep-Alive
1099
1382
  Content-Type:
1100
1383
  - application/json
1101
1384
  Accept:
1102
1385
  - application/json
1103
1386
  X-Auth-Token:
1104
- - ea1e9622dc8f4802a5f26955ccd8763f
1387
+ - f6af15c0332e4d3ab7716b51d8fedfff
1105
1388
  response:
1106
1389
  status:
1107
1390
  code: 200
1108
1391
  message: ''
1109
1392
  headers:
1110
1393
  Date:
1111
- - Fri, 24 Jul 2015 11:03:56 GMT
1394
+ - Fri, 02 Oct 2015 11:41:37 GMT
1112
1395
  Server:
1113
1396
  - Apache/2.4.7 (Ubuntu)
1114
1397
  Vary:
1115
1398
  - X-Auth-Token
1116
1399
  X-Openstack-Request-Id:
1117
- - req-6e0fad29-cbf5-43ca-9e78-2df6570346bc
1400
+ - req-17d33a97-3a90-4240-bb4b-5b63ec1316ef
1118
1401
  Content-Length:
1119
- - '126'
1402
+ - '123'
1120
1403
  Content-Type:
1121
1404
  - application/json
1405
+ X-Cache:
1406
+ - MISS from i056593-vagrant
1407
+ X-Cache-Lookup:
1408
+ - MISS from i056593-vagrant:3128
1409
+ Via:
1410
+ - 1.1 i056593-vagrant (squid/3.3.8)
1411
+ Connection:
1412
+ - keep-alive
1122
1413
  body:
1123
- encoding: US-ASCII
1124
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-fooboo67",
1414
+ encoding: UTF-8
1415
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-fooboo67",
1125
1416
  "previous": null, "next": null}, "projects": []}'
1126
1417
  http_version:
1127
- recorded_at: Fri, 24 Jul 2015 11:04:16 GMT
1418
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1128
1419
  - request:
1129
1420
  method: get
1130
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-fooboo67
1421
+ uri: http://10.97.17.84:35357/v3/projects?name=p-fooboo67
1131
1422
  body:
1132
1423
  encoding: US-ASCII
1133
1424
  string: ''
1134
1425
  headers:
1135
1426
  User-Agent:
1136
- - fog-core/1.32.0
1427
+ - fog-core/1.32.1
1428
+ Proxy-Connection:
1429
+ - Keep-Alive
1137
1430
  Content-Type:
1138
1431
  - application/json
1139
1432
  Accept:
1140
1433
  - application/json
1141
1434
  X-Auth-Token:
1142
- - ea1e9622dc8f4802a5f26955ccd8763f
1435
+ - f6af15c0332e4d3ab7716b51d8fedfff
1143
1436
  response:
1144
1437
  status:
1145
1438
  code: 200
1146
1439
  message: ''
1147
1440
  headers:
1148
1441
  Date:
1149
- - Fri, 24 Jul 2015 11:03:56 GMT
1442
+ - Fri, 02 Oct 2015 11:41:37 GMT
1150
1443
  Server:
1151
1444
  - Apache/2.4.7 (Ubuntu)
1152
1445
  Vary:
1153
1446
  - X-Auth-Token
1154
1447
  X-Openstack-Request-Id:
1155
- - req-28156923-6d90-46e3-876b-85096a8e4ad5
1448
+ - req-b12e761b-b292-482b-b521-0d45b84e983c
1156
1449
  Content-Length:
1157
- - '126'
1450
+ - '123'
1158
1451
  Content-Type:
1159
1452
  - application/json
1453
+ X-Cache:
1454
+ - MISS from i056593-vagrant
1455
+ X-Cache-Lookup:
1456
+ - MISS from i056593-vagrant:3128
1457
+ Via:
1458
+ - 1.1 i056593-vagrant (squid/3.3.8)
1459
+ Connection:
1460
+ - keep-alive
1160
1461
  body:
1161
- encoding: US-ASCII
1162
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-fooboo67",
1462
+ encoding: UTF-8
1463
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-fooboo67",
1163
1464
  "previous": null, "next": null}, "projects": []}'
1164
1465
  http_version:
1165
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1466
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1166
1467
  - request:
1167
1468
  method: get
1168
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-boo67
1469
+ uri: http://10.97.17.84:35357/v3/projects?name=p-boo67
1169
1470
  body:
1170
1471
  encoding: US-ASCII
1171
1472
  string: ''
1172
1473
  headers:
1173
1474
  User-Agent:
1174
- - fog-core/1.32.0
1475
+ - fog-core/1.32.1
1476
+ Proxy-Connection:
1477
+ - Keep-Alive
1175
1478
  Content-Type:
1176
1479
  - application/json
1177
1480
  Accept:
1178
1481
  - application/json
1179
1482
  X-Auth-Token:
1180
- - ea1e9622dc8f4802a5f26955ccd8763f
1483
+ - f6af15c0332e4d3ab7716b51d8fedfff
1181
1484
  response:
1182
1485
  status:
1183
1486
  code: 200
1184
1487
  message: ''
1185
1488
  headers:
1186
1489
  Date:
1187
- - Fri, 24 Jul 2015 11:03:56 GMT
1490
+ - Fri, 02 Oct 2015 11:41:37 GMT
1188
1491
  Server:
1189
1492
  - Apache/2.4.7 (Ubuntu)
1190
1493
  Vary:
1191
1494
  - X-Auth-Token
1192
1495
  X-Openstack-Request-Id:
1193
- - req-18d78997-d6be-4192-9354-329878be50ac
1496
+ - req-0025d209-1a14-48df-9775-45d2ca2e9ea3
1194
1497
  Content-Length:
1195
- - '123'
1498
+ - '120'
1196
1499
  Content-Type:
1197
1500
  - application/json
1501
+ X-Cache:
1502
+ - MISS from i056593-vagrant
1503
+ X-Cache-Lookup:
1504
+ - MISS from i056593-vagrant:3128
1505
+ Via:
1506
+ - 1.1 i056593-vagrant (squid/3.3.8)
1507
+ Connection:
1508
+ - keep-alive
1198
1509
  body:
1199
- encoding: US-ASCII
1200
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-boo67",
1510
+ encoding: UTF-8
1511
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-boo67",
1201
1512
  "previous": null, "next": null}, "projects": []}'
1202
1513
  http_version:
1203
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1514
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1204
1515
  - request:
1205
1516
  method: get
1206
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-boo67
1517
+ uri: http://10.97.17.84:35357/v3/projects?name=p-boo67
1207
1518
  body:
1208
1519
  encoding: US-ASCII
1209
1520
  string: ''
1210
1521
  headers:
1211
1522
  User-Agent:
1212
- - fog-core/1.32.0
1523
+ - fog-core/1.32.1
1524
+ Proxy-Connection:
1525
+ - Keep-Alive
1213
1526
  Content-Type:
1214
1527
  - application/json
1215
1528
  Accept:
1216
1529
  - application/json
1217
1530
  X-Auth-Token:
1218
- - ea1e9622dc8f4802a5f26955ccd8763f
1531
+ - f6af15c0332e4d3ab7716b51d8fedfff
1219
1532
  response:
1220
1533
  status:
1221
1534
  code: 200
1222
1535
  message: ''
1223
1536
  headers:
1224
1537
  Date:
1225
- - Fri, 24 Jul 2015 11:03:56 GMT
1538
+ - Fri, 02 Oct 2015 11:41:37 GMT
1226
1539
  Server:
1227
1540
  - Apache/2.4.7 (Ubuntu)
1228
1541
  Vary:
1229
1542
  - X-Auth-Token
1230
1543
  X-Openstack-Request-Id:
1231
- - req-02cd3c7c-ca92-4bd3-9f97-e76d374c007f
1544
+ - req-ad076ddc-ad3d-4bd0-bd7a-27b8aa8eb11f
1232
1545
  Content-Length:
1233
- - '123'
1546
+ - '120'
1234
1547
  Content-Type:
1235
1548
  - application/json
1549
+ X-Cache:
1550
+ - MISS from i056593-vagrant
1551
+ X-Cache-Lookup:
1552
+ - MISS from i056593-vagrant:3128
1553
+ Via:
1554
+ - 1.1 i056593-vagrant (squid/3.3.8)
1555
+ Connection:
1556
+ - keep-alive
1236
1557
  body:
1237
- encoding: US-ASCII
1238
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-boo67",
1558
+ encoding: UTF-8
1559
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-boo67",
1239
1560
  "previous": null, "next": null}, "projects": []}'
1240
1561
  http_version:
1241
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1562
+ recorded_at: Fri, 02 Oct 2015 11:41:25 GMT
1242
1563
  - request:
1243
1564
  method: get
1244
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-baz67
1565
+ uri: http://10.97.17.84:35357/v3/projects?name=p-baz67
1245
1566
  body:
1246
1567
  encoding: US-ASCII
1247
1568
  string: ''
1248
1569
  headers:
1249
1570
  User-Agent:
1250
- - fog-core/1.32.0
1571
+ - fog-core/1.32.1
1572
+ Proxy-Connection:
1573
+ - Keep-Alive
1251
1574
  Content-Type:
1252
1575
  - application/json
1253
1576
  Accept:
1254
1577
  - application/json
1255
1578
  X-Auth-Token:
1256
- - ea1e9622dc8f4802a5f26955ccd8763f
1579
+ - f6af15c0332e4d3ab7716b51d8fedfff
1257
1580
  response:
1258
1581
  status:
1259
1582
  code: 200
1260
1583
  message: ''
1261
1584
  headers:
1262
1585
  Date:
1263
- - Fri, 24 Jul 2015 11:03:56 GMT
1586
+ - Fri, 02 Oct 2015 11:41:37 GMT
1264
1587
  Server:
1265
1588
  - Apache/2.4.7 (Ubuntu)
1266
1589
  Vary:
1267
1590
  - X-Auth-Token
1268
1591
  X-Openstack-Request-Id:
1269
- - req-8e20c713-9427-47a0-ba06-677f28a34e90
1592
+ - req-adc5f1ac-3ff5-4622-91c5-71eea69ceb2c
1270
1593
  Content-Length:
1271
- - '123'
1594
+ - '120'
1272
1595
  Content-Type:
1273
1596
  - application/json
1597
+ X-Cache:
1598
+ - MISS from i056593-vagrant
1599
+ X-Cache-Lookup:
1600
+ - MISS from i056593-vagrant:3128
1601
+ Via:
1602
+ - 1.1 i056593-vagrant (squid/3.3.8)
1603
+ Connection:
1604
+ - keep-alive
1274
1605
  body:
1275
- encoding: US-ASCII
1276
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-baz67",
1606
+ encoding: UTF-8
1607
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-baz67",
1277
1608
  "previous": null, "next": null}, "projects": []}'
1278
1609
  http_version:
1279
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1610
+ recorded_at: Fri, 02 Oct 2015 11:41:26 GMT
1280
1611
  - request:
1281
1612
  method: get
1282
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-baz67
1613
+ uri: http://10.97.17.84:35357/v3/projects?name=p-baz67
1283
1614
  body:
1284
1615
  encoding: US-ASCII
1285
1616
  string: ''
1286
1617
  headers:
1287
1618
  User-Agent:
1288
- - fog-core/1.32.0
1619
+ - fog-core/1.32.1
1620
+ Proxy-Connection:
1621
+ - Keep-Alive
1289
1622
  Content-Type:
1290
1623
  - application/json
1291
1624
  Accept:
1292
1625
  - application/json
1293
1626
  X-Auth-Token:
1294
- - ea1e9622dc8f4802a5f26955ccd8763f
1627
+ - f6af15c0332e4d3ab7716b51d8fedfff
1295
1628
  response:
1296
1629
  status:
1297
1630
  code: 200
1298
1631
  message: ''
1299
1632
  headers:
1300
1633
  Date:
1301
- - Fri, 24 Jul 2015 11:03:56 GMT
1634
+ - Fri, 02 Oct 2015 11:41:38 GMT
1302
1635
  Server:
1303
1636
  - Apache/2.4.7 (Ubuntu)
1304
1637
  Vary:
1305
1638
  - X-Auth-Token
1306
1639
  X-Openstack-Request-Id:
1307
- - req-4e575274-0e98-4415-be62-29103606464e
1640
+ - req-12cfbdb3-4b42-4df9-b720-fc29f7146b70
1308
1641
  Content-Length:
1309
- - '123'
1642
+ - '120'
1310
1643
  Content-Type:
1311
1644
  - application/json
1645
+ X-Cache:
1646
+ - MISS from i056593-vagrant
1647
+ X-Cache-Lookup:
1648
+ - MISS from i056593-vagrant:3128
1649
+ Via:
1650
+ - 1.1 i056593-vagrant (squid/3.3.8)
1651
+ Connection:
1652
+ - keep-alive
1312
1653
  body:
1313
- encoding: US-ASCII
1314
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-baz67",
1654
+ encoding: UTF-8
1655
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-baz67",
1315
1656
  "previous": null, "next": null}, "projects": []}'
1316
1657
  http_version:
1317
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1658
+ recorded_at: Fri, 02 Oct 2015 11:41:26 GMT
1318
1659
  - request:
1319
1660
  method: get
1320
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar67
1661
+ uri: http://10.97.17.84:35357/v3/projects?name=p-foobar67
1321
1662
  body:
1322
1663
  encoding: US-ASCII
1323
1664
  string: ''
1324
1665
  headers:
1325
1666
  User-Agent:
1326
- - fog-core/1.32.0
1667
+ - fog-core/1.32.1
1668
+ Proxy-Connection:
1669
+ - Keep-Alive
1327
1670
  Content-Type:
1328
1671
  - application/json
1329
1672
  Accept:
1330
1673
  - application/json
1331
1674
  X-Auth-Token:
1332
- - ea1e9622dc8f4802a5f26955ccd8763f
1675
+ - f6af15c0332e4d3ab7716b51d8fedfff
1333
1676
  response:
1334
1677
  status:
1335
1678
  code: 200
1336
1679
  message: ''
1337
1680
  headers:
1338
1681
  Date:
1339
- - Fri, 24 Jul 2015 11:03:56 GMT
1682
+ - Fri, 02 Oct 2015 11:41:38 GMT
1340
1683
  Server:
1341
1684
  - Apache/2.4.7 (Ubuntu)
1342
1685
  Vary:
1343
1686
  - X-Auth-Token
1344
1687
  X-Openstack-Request-Id:
1345
- - req-5e735cdd-d6fb-4228-8925-524f6e8a6ba9
1688
+ - req-da9068ad-61df-4914-9212-4df5e1474a4b
1346
1689
  Content-Length:
1347
- - '126'
1690
+ - '123'
1348
1691
  Content-Type:
1349
1692
  - application/json
1693
+ X-Cache:
1694
+ - MISS from i056593-vagrant
1695
+ X-Cache-Lookup:
1696
+ - MISS from i056593-vagrant:3128
1697
+ Via:
1698
+ - 1.1 i056593-vagrant (squid/3.3.8)
1699
+ Connection:
1700
+ - keep-alive
1350
1701
  body:
1351
- encoding: US-ASCII
1352
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-foobar67",
1702
+ encoding: UTF-8
1703
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-foobar67",
1353
1704
  "previous": null, "next": null}, "projects": []}'
1354
1705
  http_version:
1355
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1706
+ recorded_at: Fri, 02 Oct 2015 11:41:26 GMT
1356
1707
  - request:
1357
1708
  method: get
1358
- uri: http://devstack.openstack.stack:35357/v3/projects?name=p-foobar67
1709
+ uri: http://10.97.17.84:35357/v3/projects?name=p-foobar67
1359
1710
  body:
1360
1711
  encoding: US-ASCII
1361
1712
  string: ''
1362
1713
  headers:
1363
1714
  User-Agent:
1364
- - fog-core/1.32.0
1715
+ - fog-core/1.32.1
1716
+ Proxy-Connection:
1717
+ - Keep-Alive
1365
1718
  Content-Type:
1366
1719
  - application/json
1367
1720
  Accept:
1368
1721
  - application/json
1369
1722
  X-Auth-Token:
1370
- - ea1e9622dc8f4802a5f26955ccd8763f
1723
+ - f6af15c0332e4d3ab7716b51d8fedfff
1371
1724
  response:
1372
1725
  status:
1373
1726
  code: 200
1374
1727
  message: ''
1375
1728
  headers:
1376
1729
  Date:
1377
- - Fri, 24 Jul 2015 11:03:56 GMT
1730
+ - Fri, 02 Oct 2015 11:41:38 GMT
1378
1731
  Server:
1379
1732
  - Apache/2.4.7 (Ubuntu)
1380
1733
  Vary:
1381
1734
  - X-Auth-Token
1382
1735
  X-Openstack-Request-Id:
1383
- - req-7405bdf6-3564-41ac-adc5-bec643ded99e
1736
+ - req-4e785ac5-a434-4943-920e-d92db35502a4
1384
1737
  Content-Length:
1385
- - '126'
1738
+ - '123'
1386
1739
  Content-Type:
1387
1740
  - application/json
1741
+ X-Cache:
1742
+ - MISS from i056593-vagrant
1743
+ X-Cache-Lookup:
1744
+ - MISS from i056593-vagrant:3128
1745
+ Via:
1746
+ - 1.1 i056593-vagrant (squid/3.3.8)
1747
+ Connection:
1748
+ - keep-alive
1388
1749
  body:
1389
- encoding: US-ASCII
1390
- string: ! '{"links": {"self": "http://devstack.openstack.stack:35357/v3/projects?name=p-foobar67",
1750
+ encoding: UTF-8
1751
+ string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-foobar67",
1391
1752
  "previous": null, "next": null}, "projects": []}'
1392
1753
  http_version:
1393
- recorded_at: Fri, 24 Jul 2015 11:04:17 GMT
1754
+ recorded_at: Fri, 02 Oct 2015 11:41:26 GMT
1394
1755
  recorded_with: VCR 2.9.3