fog 1.36.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (305) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +61 -0
  3. data/Rakefile +0 -3
  4. data/fog.gemspec +4 -3
  5. data/lib/fog/digitalocean/compute_v2.rb +2 -1
  6. data/lib/fog/digitalocean/examples/getting_started.md +24 -48
  7. data/lib/fog/digitalocean/models/compute_v2/server.rb +4 -0
  8. data/lib/fog/digitalocean/models/compute_v2/ssh_key.rb +17 -16
  9. data/lib/fog/digitalocean/requests/compute_v2/delete_ssh_key.rb +1 -1
  10. data/lib/fog/digitalocean/requests/compute_v2/get_image_details.rb +1 -2
  11. data/lib/fog/openstack.rb +2 -0
  12. data/lib/fog/openstack/common.rb +46 -0
  13. data/lib/fog/openstack/compute.rb +3 -1
  14. data/lib/fog/openstack/core.rb +15 -3
  15. data/lib/fog/openstack/docs/compute.md +1 -1
  16. data/lib/fog/openstack/identity.rb +0 -37
  17. data/lib/fog/openstack/identity_v2.rb +9 -3
  18. data/lib/fog/openstack/identity_v3.rb +8 -3
  19. data/lib/fog/openstack/image.rb +1 -41
  20. data/lib/fog/openstack/image_v1.rb +9 -3
  21. data/lib/fog/openstack/image_v2.rb +7 -2
  22. data/lib/fog/openstack/metering.rb +2 -1
  23. data/lib/fog/openstack/models/compute/server.rb +5 -0
  24. data/lib/fog/openstack/models/identity_v2/user.rb +6 -2
  25. data/lib/fog/openstack/models/volume/availability_zone.rb +1 -4
  26. data/lib/fog/openstack/models/volume/availability_zones.rb +1 -4
  27. data/lib/fog/openstack/models/volume/transfer.rb +1 -9
  28. data/lib/fog/openstack/models/volume/transfers.rb +1 -4
  29. data/lib/fog/openstack/models/volume/volume.rb +6 -18
  30. data/lib/fog/openstack/models/volume/volume_type.rb +0 -3
  31. data/lib/fog/openstack/models/volume/volume_types.rb +1 -4
  32. data/lib/fog/openstack/models/volume/volumes.rb +1 -4
  33. data/lib/fog/openstack/models/volume_v1/availability_zone.rb +15 -0
  34. data/lib/fog/openstack/models/volume_v1/availability_zones.rb +16 -0
  35. data/lib/fog/openstack/models/volume_v1/transfer.rb +18 -0
  36. data/lib/fog/openstack/models/volume_v1/transfers.rb +16 -0
  37. data/lib/fog/openstack/models/volume_v1/volume.rb +26 -0
  38. data/lib/fog/openstack/models/volume_v1/volume_type.rb +16 -0
  39. data/lib/fog/openstack/models/volume_v1/volume_types.rb +16 -0
  40. data/lib/fog/openstack/models/volume_v1/volumes.rb +16 -0
  41. data/lib/fog/openstack/models/volume_v2/availability_zone.rb +15 -0
  42. data/lib/fog/openstack/models/volume_v2/availability_zones.rb +16 -0
  43. data/lib/fog/openstack/models/volume_v2/transfer.rb +19 -0
  44. data/lib/fog/openstack/models/volume_v2/transfers.rb +16 -0
  45. data/lib/fog/openstack/models/volume_v2/volume.rb +27 -0
  46. data/lib/fog/openstack/models/volume_v2/volume_type.rb +16 -0
  47. data/lib/fog/openstack/models/volume_v2/volume_types.rb +16 -0
  48. data/lib/fog/openstack/models/volume_v2/volumes.rb +16 -0
  49. data/lib/fog/openstack/network.rb +2 -1
  50. data/lib/fog/openstack/orchestration.rb +2 -1
  51. data/lib/fog/openstack/planning.rb +2 -1
  52. data/lib/fog/openstack/requests/compute/evacuate_server.rb +26 -0
  53. data/lib/fog/openstack/requests/volume/accept_transfer.rb +8 -10
  54. data/lib/fog/openstack/requests/volume/create_transfer.rb +8 -10
  55. data/lib/fog/openstack/requests/volume/create_volume.rb +9 -40
  56. data/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +13 -31
  57. data/lib/fog/openstack/requests/volume/create_volume_type.rb +2 -2
  58. data/lib/fog/openstack/requests/volume/delete_snapshot.rb +2 -2
  59. data/lib/fog/openstack/requests/volume/delete_transfer.rb +1 -3
  60. data/lib/fog/openstack/requests/volume/delete_volume.rb +2 -2
  61. data/lib/fog/openstack/requests/volume/delete_volume_type.rb +2 -2
  62. data/lib/fog/openstack/requests/volume/extend_volume.rb +2 -2
  63. data/lib/fog/openstack/requests/volume/get_quota.rb +2 -2
  64. data/lib/fog/openstack/requests/volume/get_quota_defaults.rb +7 -7
  65. data/lib/fog/openstack/requests/volume/get_quota_usage.rb +2 -2
  66. data/lib/fog/openstack/requests/volume/get_snapshot_details.rb +1 -20
  67. data/lib/fog/openstack/requests/volume/get_transfer_details.rb +1 -1
  68. data/lib/fog/openstack/requests/volume/get_volume_details.rb +1 -22
  69. data/lib/fog/openstack/requests/volume/get_volume_type_details.rb +2 -2
  70. data/lib/fog/openstack/requests/volume/list_snapshots.rb +2 -2
  71. data/lib/fog/openstack/requests/volume/list_snapshots_detailed.rb +2 -2
  72. data/lib/fog/openstack/requests/volume/list_transfers.rb +1 -1
  73. data/lib/fog/openstack/requests/volume/list_transfers_detailed.rb +1 -1
  74. data/lib/fog/openstack/requests/volume/list_volume_types.rb +2 -2
  75. data/lib/fog/openstack/requests/volume/list_volumes.rb +1 -34
  76. data/lib/fog/openstack/requests/volume/list_volumes_detailed.rb +1 -34
  77. data/lib/fog/openstack/requests/volume/list_zones.rb +2 -2
  78. data/lib/fog/openstack/requests/volume/set_tenant.rb +2 -2
  79. data/lib/fog/openstack/requests/volume/update_quota.rb +2 -2
  80. data/lib/fog/openstack/requests/volume/update_volume_type.rb +2 -2
  81. data/lib/fog/openstack/requests/volume_v1/accept_transfer.rb +2 -0
  82. data/lib/fog/openstack/requests/volume_v1/create_transfer.rb +2 -0
  83. data/lib/fog/openstack/requests/volume_v1/create_volume.rb +49 -0
  84. data/lib/fog/openstack/requests/volume_v1/create_volume_snapshot.rb +44 -0
  85. data/lib/fog/openstack/requests/volume_v1/create_volume_type.rb +2 -0
  86. data/lib/fog/openstack/requests/volume_v1/delete_snapshot.rb +2 -0
  87. data/lib/fog/openstack/requests/volume_v1/delete_transfer.rb +2 -0
  88. data/lib/fog/openstack/requests/volume_v1/delete_volume.rb +2 -0
  89. data/lib/fog/openstack/requests/volume_v1/delete_volume_type.rb +2 -0
  90. data/lib/fog/openstack/requests/volume_v1/extend_volume.rb +2 -0
  91. data/lib/fog/openstack/requests/volume_v1/get_quota.rb +2 -0
  92. data/lib/fog/openstack/requests/volume_v1/get_quota_defaults.rb +2 -0
  93. data/lib/fog/openstack/requests/volume_v1/get_quota_usage.rb +2 -0
  94. data/lib/fog/openstack/requests/volume_v1/get_snapshot_details.rb +32 -0
  95. data/lib/fog/openstack/requests/volume_v1/get_transfer_details.rb +2 -0
  96. data/lib/fog/openstack/requests/volume_v1/get_volume_details.rb +35 -0
  97. data/lib/fog/openstack/requests/volume_v1/get_volume_type_details.rb +2 -0
  98. data/lib/fog/openstack/requests/volume_v1/list_snapshots.rb +2 -0
  99. data/lib/fog/openstack/requests/volume_v1/list_snapshots_detailed.rb +2 -0
  100. data/lib/fog/openstack/requests/volume_v1/list_transfers.rb +2 -0
  101. data/lib/fog/openstack/requests/volume_v1/list_transfers_detailed.rb +2 -0
  102. data/lib/fog/openstack/requests/volume_v1/list_volume_types.rb +2 -0
  103. data/lib/fog/openstack/requests/volume_v1/list_volumes.rb +46 -0
  104. data/lib/fog/openstack/requests/volume_v1/list_volumes_detailed.rb +46 -0
  105. data/lib/fog/openstack/requests/volume_v1/list_zones.rb +2 -0
  106. data/lib/fog/openstack/requests/volume_v1/real.rb +11 -0
  107. data/lib/fog/openstack/requests/volume_v1/real_mock.rb +14 -0
  108. data/lib/fog/openstack/requests/volume_v1/set_tenant.rb +2 -0
  109. data/lib/fog/openstack/requests/volume_v1/update_quota.rb +2 -0
  110. data/lib/fog/openstack/requests/volume_v2/accept_transfer.rb +2 -0
  111. data/lib/fog/openstack/requests/volume_v2/create_transfer.rb +2 -0
  112. data/lib/fog/openstack/requests/volume_v2/create_volume.rb +49 -0
  113. data/lib/fog/openstack/requests/volume_v2/create_volume_snapshot.rb +43 -0
  114. data/lib/fog/openstack/requests/volume_v2/create_volume_type.rb +2 -0
  115. data/lib/fog/openstack/requests/volume_v2/delete_snapshot.rb +2 -0
  116. data/lib/fog/openstack/requests/volume_v2/delete_transfer.rb +2 -0
  117. data/lib/fog/openstack/requests/volume_v2/delete_volume.rb +2 -0
  118. data/lib/fog/openstack/requests/volume_v2/delete_volume_type.rb +2 -0
  119. data/lib/fog/openstack/requests/volume_v2/extend_volume.rb +2 -0
  120. data/lib/fog/openstack/requests/volume_v2/get_quota.rb +2 -0
  121. data/lib/fog/openstack/requests/volume_v2/get_quota_defaults.rb +2 -0
  122. data/lib/fog/openstack/requests/volume_v2/get_quota_usage.rb +2 -0
  123. data/lib/fog/openstack/requests/volume_v2/get_snapshot_details.rb +32 -0
  124. data/lib/fog/openstack/requests/volume_v2/get_transfer_details.rb +2 -0
  125. data/lib/fog/openstack/requests/volume_v2/get_volume_details.rb +35 -0
  126. data/lib/fog/openstack/requests/volume_v2/get_volume_type_details.rb +2 -0
  127. data/lib/fog/openstack/requests/volume_v2/list_snapshots.rb +2 -0
  128. data/lib/fog/openstack/requests/volume_v2/list_snapshots_detailed.rb +2 -0
  129. data/lib/fog/openstack/requests/volume_v2/list_transfers.rb +2 -0
  130. data/lib/fog/openstack/requests/volume_v2/list_transfers_detailed.rb +2 -0
  131. data/lib/fog/openstack/requests/volume_v2/list_volume_types.rb +2 -0
  132. data/lib/fog/openstack/requests/volume_v2/list_volumes.rb +46 -0
  133. data/lib/fog/openstack/requests/volume_v2/list_volumes_detailed.rb +46 -0
  134. data/lib/fog/openstack/requests/volume_v2/list_zones.rb +2 -0
  135. data/lib/fog/openstack/requests/volume_v2/real.rb +11 -0
  136. data/lib/fog/openstack/requests/volume_v2/real_mock.rb +14 -0
  137. data/lib/fog/openstack/requests/volume_v2/set_tenant.rb +2 -0
  138. data/lib/fog/openstack/requests/volume_v2/update_quota.rb +2 -0
  139. data/lib/fog/openstack/requests/volume_v2/update_volume_type.rb +2 -0
  140. data/lib/fog/openstack/storage.rb +2 -1
  141. data/lib/fog/openstack/volume.rb +21 -176
  142. data/lib/fog/openstack/volume_v1.rb +163 -0
  143. data/lib/fog/openstack/volume_v2.rb +164 -0
  144. data/lib/fog/rackspace/compute_v2.rb +1 -0
  145. data/lib/fog/rackspace/docs/compute_v2.md +1 -1
  146. data/lib/fog/rackspace/models/compute_v2/server.rb +14 -0
  147. data/lib/fog/rackspace/requests/compute_v2/get_vnc_console.rb +45 -0
  148. data/lib/fog/rackspace/requests/storage/put_container.rb +10 -6
  149. data/lib/fog/vcloud_director/compute.rb +18 -2
  150. data/lib/fog/vcloud_director/models/compute/disks.rb +6 -0
  151. data/lib/fog/vcloud_director/models/compute/networks.rb +7 -2
  152. data/lib/fog/vcloud_director/models/compute/vdc.rb +5 -0
  153. data/lib/fog/vcloud_director/models/compute/vm.rb +15 -1
  154. data/lib/fog/vcloud_director/parsers/compute/vm.rb +4 -0
  155. data/lib/fog/vcloud_director/parsers/compute/vms.rb +4 -0
  156. data/lib/fog/vcloud_director/requests/compute/delete_vapp.rb +30 -0
  157. data/lib/fog/vcloud_director/requests/compute/get_catalog.rb +24 -3
  158. data/lib/fog/vcloud_director/requests/compute/get_catalog_item.rb +23 -0
  159. data/lib/fog/vcloud_director/requests/compute/get_metadata.rb +11 -0
  160. data/lib/fog/vcloud_director/requests/compute/get_vapp.rb +1 -0
  161. data/lib/fog/vcloud_director/requests/compute/get_vm.rb +46 -0
  162. data/lib/fog/vcloud_director/requests/compute/get_vm_disks.rb +20 -0
  163. data/lib/fog/vcloud_director/requests/compute/get_vm_network.rb +25 -0
  164. data/lib/fog/vcloud_director/requests/compute/get_vms.rb +13 -0
  165. data/lib/fog/vcloud_director/requests/compute/instantiate_vapp_template.rb +70 -0
  166. data/lib/fog/vcloud_director/requests/compute/post_power_on_vapp.rb +35 -0
  167. data/lib/fog/vcloud_director/requests/compute/post_reconfigure_vm.rb +118 -0
  168. data/lib/fog/vcloud_director/requests/compute/post_update_vapp_metadata.rb +34 -0
  169. data/lib/fog/vcloud_director/requests/compute/put_guest_customization_section_vapp.rb +2 -1
  170. data/lib/fog/vcloud_director/requests/compute/put_network_connection_system_section_vapp.rb +31 -0
  171. data/lib/fog/version.rb +1 -1
  172. data/lib/tasks/changelog_task.rb +1 -0
  173. data/spec/fog/openstack/shared_context.rb +11 -2
  174. data/spec/fog/openstack/volume/common_setup.yml +74 -50
  175. data/spec/fog/openstack/volume/volume_crud.yml +286 -236
  176. data/spec/fog/openstack/volume/volume_extend.yml +270 -363
  177. data/spec/fog/openstack/volume/volume_transfer_and_accept.yml +418 -424
  178. data/spec/fog/openstack/volume/volume_transfer_and_delete.yml +292 -321
  179. data/spec/fog/openstack/volume/volume_type_read.yml +30 -36
  180. data/spec/fog/openstack/volume_spec.rb +251 -224
  181. data/spec/fog/openstack/volume_v1/common_setup.yml +100 -0
  182. data/spec/fog/openstack/volume_v1/volume_crud.yml +535 -0
  183. data/spec/fog/openstack/volume_v1/volume_extend.yml +596 -0
  184. data/spec/fog/openstack/volume_v1/volume_transfer_and_accept.yml +1010 -0
  185. data/spec/fog/openstack/volume_v1/volume_transfer_and_delete.yml +645 -0
  186. data/spec/fog/openstack/volume_v1/volume_type_read.yml +114 -0
  187. data/spec/fog/openstack/volume_v2/common_setup.yml +100 -0
  188. data/spec/fog/openstack/volume_v2/volume_crud.yml +611 -0
  189. data/spec/fog/openstack/volume_v2/volume_extend.yml +669 -0
  190. data/spec/fog/openstack/volume_v2/volume_transfer_and_accept.yml +1072 -0
  191. data/spec/fog/openstack/volume_v2/volume_transfer_and_delete.yml +666 -0
  192. data/spec/fog/openstack/volume_v2/volume_type_read.yml +114 -0
  193. data/tests/helpers/mock_helper.rb +0 -4
  194. data/tests/openstack/authenticate_tests.rb +4 -0
  195. data/tests/openstack/volume_tests.rb +4 -0
  196. data/tests/rackspace/requests/compute_v2/server_tests.rb +4 -0
  197. metadata +135 -152
  198. data/lib/fog/bin/vsphere.rb +0 -28
  199. data/lib/fog/vsphere.rb +0 -1
  200. data/lib/fog/vsphere/compute.rb +0 -474
  201. data/lib/fog/vsphere/core.rb +0 -39
  202. data/lib/fog/vsphere/models/compute/cluster.rb +0 -28
  203. data/lib/fog/vsphere/models/compute/clusters.rb +0 -23
  204. data/lib/fog/vsphere/models/compute/customfield.rb +0 -16
  205. data/lib/fog/vsphere/models/compute/customfields.rb +0 -24
  206. data/lib/fog/vsphere/models/compute/customvalue.rb +0 -14
  207. data/lib/fog/vsphere/models/compute/customvalues.rb +0 -34
  208. data/lib/fog/vsphere/models/compute/datacenter.rb +0 -44
  209. data/lib/fog/vsphere/models/compute/datacenters.rb +0 -20
  210. data/lib/fog/vsphere/models/compute/datastore.rb +0 -21
  211. data/lib/fog/vsphere/models/compute/datastores.rb +0 -22
  212. data/lib/fog/vsphere/models/compute/folder.rb +0 -24
  213. data/lib/fog/vsphere/models/compute/folders.rb +0 -24
  214. data/lib/fog/vsphere/models/compute/interface.rb +0 -91
  215. data/lib/fog/vsphere/models/compute/interfaces.rb +0 -67
  216. data/lib/fog/vsphere/models/compute/interfacetype.rb +0 -22
  217. data/lib/fog/vsphere/models/compute/interfacetypes.rb +0 -35
  218. data/lib/fog/vsphere/models/compute/network.rb +0 -18
  219. data/lib/fog/vsphere/models/compute/networks.rb +0 -23
  220. data/lib/fog/vsphere/models/compute/process.rb +0 -18
  221. data/lib/fog/vsphere/models/compute/resource_pool.rb +0 -19
  222. data/lib/fog/vsphere/models/compute/resource_pools.rb +0 -23
  223. data/lib/fog/vsphere/models/compute/scsicontroller.rb +0 -16
  224. data/lib/fog/vsphere/models/compute/server.rb +0 -325
  225. data/lib/fog/vsphere/models/compute/servers.rb +0 -37
  226. data/lib/fog/vsphere/models/compute/servertype.rb +0 -36
  227. data/lib/fog/vsphere/models/compute/servertypes.rb +0 -24
  228. data/lib/fog/vsphere/models/compute/snapshot.rb +0 -35
  229. data/lib/fog/vsphere/models/compute/snapshots.rb +0 -27
  230. data/lib/fog/vsphere/models/compute/template.rb +0 -11
  231. data/lib/fog/vsphere/models/compute/templates.rb +0 -20
  232. data/lib/fog/vsphere/models/compute/volume.rb +0 -99
  233. data/lib/fog/vsphere/models/compute/volumes.rb +0 -54
  234. data/lib/fog/vsphere/requests/compute/cloudinit_to_customspec.rb +0 -65
  235. data/lib/fog/vsphere/requests/compute/create_folder.rb +0 -22
  236. data/lib/fog/vsphere/requests/compute/create_vm.rb +0 -227
  237. data/lib/fog/vsphere/requests/compute/current_time.rb +0 -18
  238. data/lib/fog/vsphere/requests/compute/get_cluster.rb +0 -25
  239. data/lib/fog/vsphere/requests/compute/get_compute_resource.rb +0 -41
  240. data/lib/fog/vsphere/requests/compute/get_datacenter.rb +0 -31
  241. data/lib/fog/vsphere/requests/compute/get_datastore.rb +0 -30
  242. data/lib/fog/vsphere/requests/compute/get_folder.rb +0 -74
  243. data/lib/fog/vsphere/requests/compute/get_interface_type.rb +0 -15
  244. data/lib/fog/vsphere/requests/compute/get_network.rb +0 -59
  245. data/lib/fog/vsphere/requests/compute/get_resource_pool.rb +0 -26
  246. data/lib/fog/vsphere/requests/compute/get_server_type.rb +0 -32
  247. data/lib/fog/vsphere/requests/compute/get_template.rb +0 -16
  248. data/lib/fog/vsphere/requests/compute/get_virtual_machine.rb +0 -57
  249. data/lib/fog/vsphere/requests/compute/get_vm_first_scsi_controller.rb +0 -26
  250. data/lib/fog/vsphere/requests/compute/list_child_snapshots.rb +0 -71
  251. data/lib/fog/vsphere/requests/compute/list_clusters.rb +0 -72
  252. data/lib/fog/vsphere/requests/compute/list_compute_resources.rb +0 -92
  253. data/lib/fog/vsphere/requests/compute/list_customfields.rb +0 -21
  254. data/lib/fog/vsphere/requests/compute/list_datacenters.rb +0 -53
  255. data/lib/fog/vsphere/requests/compute/list_datastores.rb +0 -40
  256. data/lib/fog/vsphere/requests/compute/list_folders.rb +0 -44
  257. data/lib/fog/vsphere/requests/compute/list_interface_types.rb +0 -25
  258. data/lib/fog/vsphere/requests/compute/list_networks.rb +0 -38
  259. data/lib/fog/vsphere/requests/compute/list_processes.rb +0 -41
  260. data/lib/fog/vsphere/requests/compute/list_resource_pools.rb +0 -38
  261. data/lib/fog/vsphere/requests/compute/list_server_types.rb +0 -54
  262. data/lib/fog/vsphere/requests/compute/list_templates.rb +0 -48
  263. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +0 -80
  264. data/lib/fog/vsphere/requests/compute/list_vm_customvalues.rb +0 -20
  265. data/lib/fog/vsphere/requests/compute/list_vm_interfaces.rb +0 -63
  266. data/lib/fog/vsphere/requests/compute/list_vm_snapshots.rb +0 -66
  267. data/lib/fog/vsphere/requests/compute/list_vm_volumes.rb +0 -52
  268. data/lib/fog/vsphere/requests/compute/modify_vm_interface.rb +0 -59
  269. data/lib/fog/vsphere/requests/compute/modify_vm_volume.rb +0 -25
  270. data/lib/fog/vsphere/requests/compute/revert_to_snapshot.rb +0 -30
  271. data/lib/fog/vsphere/requests/compute/set_vm_customvalue.rb +0 -17
  272. data/lib/fog/vsphere/requests/compute/vm_clone.rb +0 -727
  273. data/lib/fog/vsphere/requests/compute/vm_config_vnc.rb +0 -45
  274. data/lib/fog/vsphere/requests/compute/vm_destroy.rb +0 -23
  275. data/lib/fog/vsphere/requests/compute/vm_execute.rb +0 -47
  276. data/lib/fog/vsphere/requests/compute/vm_migrate.rb +0 -33
  277. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +0 -39
  278. data/lib/fog/vsphere/requests/compute/vm_power_on.rb +0 -26
  279. data/lib/fog/vsphere/requests/compute/vm_reboot.rb +0 -31
  280. data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +0 -23
  281. data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +0 -24
  282. data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +0 -23
  283. data/lib/fog/vsphere/requests/compute/vm_take_snapshot.rb +0 -37
  284. data/tests/vsphere/compute_tests.rb +0 -53
  285. data/tests/vsphere/models/compute/server_tests.rb +0 -70
  286. data/tests/vsphere/models/compute/servers_tests.rb +0 -15
  287. data/tests/vsphere/requests/compute/current_time_tests.rb +0 -12
  288. data/tests/vsphere/requests/compute/get_network_tests.rb +0 -48
  289. data/tests/vsphere/requests/compute/list_child_snapshots_tests.rb +0 -10
  290. data/tests/vsphere/requests/compute/list_clusters_tests.rb +0 -11
  291. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +0 -38
  292. data/tests/vsphere/requests/compute/list_vm_snapshots_tests.rb +0 -10
  293. data/tests/vsphere/requests/compute/revert_to_snapshot_tests.rb +0 -15
  294. data/tests/vsphere/requests/compute/set_vm_customvalue_tests.rb +0 -20
  295. data/tests/vsphere/requests/compute/vm_clone_tests.rb +0 -50
  296. data/tests/vsphere/requests/compute/vm_config_vnc_tests.rb +0 -19
  297. data/tests/vsphere/requests/compute/vm_destroy_tests.rb +0 -17
  298. data/tests/vsphere/requests/compute/vm_migrate_tests.rb +0 -16
  299. data/tests/vsphere/requests/compute/vm_power_off_tests.rb +0 -26
  300. data/tests/vsphere/requests/compute/vm_power_on_tests.rb +0 -17
  301. data/tests/vsphere/requests/compute/vm_reboot_tests.rb +0 -26
  302. data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +0 -19
  303. data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +0 -19
  304. data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +0 -19
  305. data/tests/vsphere/requests/compute/vm_take_snapshot_tests.rb +0 -19
@@ -2,424 +2,438 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/volumes/detail?display_name=fog-testvolume-1
5
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/detail?name=fog-testvolume-1
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - fog/1.32.0 fog-core/1.32.0
12
- Proxy-Connection:
13
- - Keep-Alive
11
+ - fog-core/1.32.1
14
12
  Content-Type:
15
13
  - application/json
16
14
  Accept:
17
15
  - application/json
18
16
  X-Auth-Token:
19
- - fb5eafb443894cc59c09cf4608dbc5eb
17
+ - f8e9e59847aa47f1b80eb28452cef591
20
18
  response:
21
19
  status:
22
20
  code: 200
23
21
  message: ''
24
22
  headers:
25
23
  X-Compute-Request-Id:
26
- - req-b5b3fdde-d48a-432b-9f6f-9cb8c3e25a7a
24
+ - req-04799a7f-491c-4f97-83f7-f720ab196b93
27
25
  Content-Type:
28
26
  - application/json
29
27
  Content-Length:
30
28
  - '15'
31
29
  X-Openstack-Request-Id:
32
- - req-b5b3fdde-d48a-432b-9f6f-9cb8c3e25a7a
30
+ - req-04799a7f-491c-4f97-83f7-f720ab196b93
33
31
  Date:
34
- - Wed, 08 Jul 2015 12:18:20 GMT
32
+ - Thu, 22 Oct 2015 14:05:05 GMT
35
33
  body:
36
- encoding: US-ASCII
37
- string: ! '{"volumes": []}'
34
+ encoding: UTF-8
35
+ string: '{"volumes": []}'
38
36
  http_version:
39
- recorded_at: Wed, 08 Jul 2015 12:18:20 GMT
37
+ recorded_at: Thu, 22 Oct 2015 14:04:46 GMT
40
38
  - request:
41
39
  method: post
42
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/volumes
40
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes
43
41
  body:
44
42
  encoding: UTF-8
45
- string: ! '{"volume":{"display_name":"fog-testvolume-1","display_description":null,"size":1}}'
43
+ string: '{"volume":{"name":"fog-testvolume-1","description":null,"size":1}}'
46
44
  headers:
47
45
  User-Agent:
48
- - fog/1.32.0 fog-core/1.32.0
49
- Proxy-Connection:
50
- - Keep-Alive
46
+ - fog-core/1.32.1
51
47
  Content-Type:
52
48
  - application/json
53
49
  Accept:
54
50
  - application/json
55
51
  X-Auth-Token:
56
- - fb5eafb443894cc59c09cf4608dbc5eb
52
+ - f8e9e59847aa47f1b80eb28452cef591
57
53
  response:
58
54
  status:
59
- code: 200
55
+ code: 202
60
56
  message: ''
61
57
  headers:
62
58
  X-Compute-Request-Id:
63
- - req-4ccbb84a-d095-47ba-8de8-ce690c6391e1
59
+ - req-b8c9eba3-614b-4874-a42d-6e39d8aa36b6
64
60
  Content-Type:
65
61
  - application/json
66
62
  Content-Length:
67
- - '402'
63
+ - '778'
68
64
  X-Openstack-Request-Id:
69
- - req-4ccbb84a-d095-47ba-8de8-ce690c6391e1
65
+ - req-b8c9eba3-614b-4874-a42d-6e39d8aa36b6
70
66
  Date:
71
- - Wed, 08 Jul 2015 12:18:21 GMT
67
+ - Thu, 22 Oct 2015 14:05:05 GMT
72
68
  body:
73
- encoding: US-ASCII
74
- string: ! '{"volume": {"status": "creating", "display_name": "fog-testvolume-1",
75
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
76
- false, "created_at": "2015-07-08T12:18:21.309197", "multiattach": "false",
77
- "display_description": null, "volume_type": "lvmdriver-1", "snapshot_id":
78
- null, "source_volid": null, "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf",
79
- "size": 1}}'
69
+ encoding: UTF-8
70
+ string: '{"volume": {"status": "creating", "user_id": "9587da3bfe944085b1b2ff99ef04b59d",
71
+ "attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
72
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
73
+ "rel": "bookmark"}], "availability_zone": "nova", "bootable": "false", "encrypted":
74
+ false, "created_at": "2015-10-22T14:05:05.375009", "description": null, "volume_type":
75
+ "lvmdriver-1", "name": "fog-testvolume-1", "replication_status": "disabled",
76
+ "consistencygroup_id": null, "source_volid": null, "snapshot_id": null, "multiattach":
77
+ false, "metadata": {}, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906", "size":
78
+ 1}}'
80
79
  http_version:
81
- recorded_at: Wed, 08 Jul 2015 12:18:21 GMT
80
+ recorded_at: Thu, 22 Oct 2015 14:04:46 GMT
82
81
  - request:
83
82
  method: get
84
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
83
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
85
84
  body:
86
85
  encoding: US-ASCII
87
86
  string: ''
88
87
  headers:
89
88
  User-Agent:
90
- - fog/1.32.0 fog-core/1.32.0
91
- Proxy-Connection:
92
- - Keep-Alive
89
+ - fog-core/1.32.1
93
90
  Content-Type:
94
91
  - application/json
95
92
  Accept:
96
93
  - application/json
97
94
  X-Auth-Token:
98
- - fb5eafb443894cc59c09cf4608dbc5eb
95
+ - f8e9e59847aa47f1b80eb28452cef591
99
96
  response:
100
97
  status:
101
98
  code: 200
102
99
  message: ''
103
100
  headers:
104
101
  X-Compute-Request-Id:
105
- - req-4cabda12-0f54-4942-be26-ad08e5d32ccf
102
+ - req-7004aa54-40b1-45d9-8b71-29ab79b8bea5
106
103
  Content-Type:
107
104
  - application/json
108
105
  Content-Length:
109
- - '705'
106
+ - '1047'
110
107
  X-Openstack-Request-Id:
111
- - req-4cabda12-0f54-4942-be26-ad08e5d32ccf
108
+ - req-7004aa54-40b1-45d9-8b71-29ab79b8bea5
112
109
  Date:
113
- - Wed, 08 Jul 2015 12:18:21 GMT
110
+ - Thu, 22 Oct 2015 14:05:05 GMT
114
111
  body:
115
- encoding: US-ASCII
116
- string: ! '{"volume": {"status": "creating", "display_name": "fog-testvolume-1",
117
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
118
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
119
- "os-vol-tenant-attr:tenant_id": "a19e9490e4504b0b877c55510dfb2842", "os-volume-replication:driver_data":
120
- null, "display_description": null, "os-volume-replication:extended_status":
121
- null, "os-vol-host-attr:host": "mo-780872711@lvmdriver-1#lvmdriver-1", "volume_type":
122
- "lvmdriver-1", "snapshot_id": null, "source_volid": null, "os-vol-mig-status-attr:name_id":
123
- null, "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "os-vol-mig-status-attr:migstat":
124
- null, "size": 1}}'
112
+ encoding: UTF-8
113
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
114
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
115
+ "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
116
+ null, "encrypted": false, "os-volume-replication:extended_status": null, "replication_status":
117
+ "disabled", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
118
+ "size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
119
+ "711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
120
+ "metadata": {}, "status": "creating", "description": null, "multiattach":
121
+ false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id":
122
+ null, "os-vol-mig-status-attr:name_id": null, "name": "fog-testvolume-1",
123
+ "bootable": "false", "created_at": "2015-10-22T14:05:05.000000", "volume_type":
124
+ "lvmdriver-1"}}'
125
125
  http_version:
126
- recorded_at: Wed, 08 Jul 2015 12:18:21 GMT
126
+ recorded_at: Thu, 22 Oct 2015 14:04:46 GMT
127
127
  - request:
128
128
  method: get
129
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
129
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
130
130
  body:
131
131
  encoding: US-ASCII
132
132
  string: ''
133
133
  headers:
134
134
  User-Agent:
135
- - fog/1.32.0 fog-core/1.32.0
136
- Proxy-Connection:
137
- - Keep-Alive
135
+ - fog-core/1.32.1
138
136
  Content-Type:
139
137
  - application/json
140
138
  Accept:
141
139
  - application/json
142
140
  X-Auth-Token:
143
- - fb5eafb443894cc59c09cf4608dbc5eb
141
+ - f8e9e59847aa47f1b80eb28452cef591
144
142
  response:
145
143
  status:
146
144
  code: 200
147
145
  message: ''
148
146
  headers:
149
147
  X-Compute-Request-Id:
150
- - req-c95841ff-472a-4a0c-a632-f39af2bb88de
148
+ - req-165d6c6b-801b-4916-85db-60bfa8a64718
151
149
  Content-Type:
152
150
  - application/json
153
151
  Content-Length:
154
- - '706'
152
+ - '1079'
155
153
  X-Openstack-Request-Id:
156
- - req-c95841ff-472a-4a0c-a632-f39af2bb88de
154
+ - req-165d6c6b-801b-4916-85db-60bfa8a64718
157
155
  Date:
158
- - Wed, 08 Jul 2015 12:18:23 GMT
156
+ - Thu, 22 Oct 2015 14:05:06 GMT
159
157
  body:
160
- encoding: US-ASCII
161
- string: ! '{"volume": {"status": "available", "display_name": "fog-testvolume-1",
162
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
163
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
164
- "os-vol-tenant-attr:tenant_id": "a19e9490e4504b0b877c55510dfb2842", "os-volume-replication:driver_data":
165
- null, "display_description": null, "os-volume-replication:extended_status":
166
- null, "os-vol-host-attr:host": "mo-780872711@lvmdriver-1#lvmdriver-1", "volume_type":
167
- "lvmdriver-1", "snapshot_id": null, "source_volid": null, "os-vol-mig-status-attr:name_id":
168
- null, "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "os-vol-mig-status-attr:migstat":
169
- null, "size": 1}}'
158
+ encoding: UTF-8
159
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
160
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
161
+ "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
162
+ "openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
163
+ null, "replication_status": "disabled", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
164
+ "size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
165
+ "711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
166
+ "metadata": {}, "status": "available", "description": null, "multiattach":
167
+ false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id":
168
+ null, "os-vol-mig-status-attr:name_id": null, "name": "fog-testvolume-1",
169
+ "bootable": "false", "created_at": "2015-10-22T14:05:05.000000", "volume_type":
170
+ "lvmdriver-1"}}'
170
171
  http_version:
171
- recorded_at: Wed, 08 Jul 2015 12:18:23 GMT
172
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
172
173
  - request:
173
174
  method: get
174
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/detail?name=fog-testtransfer-1
175
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/detail?name=fog-testtransfer-1
175
176
  body:
176
177
  encoding: US-ASCII
177
178
  string: ''
178
179
  headers:
179
180
  User-Agent:
180
- - fog/1.32.0 fog-core/1.32.0
181
- Proxy-Connection:
182
- - Keep-Alive
181
+ - fog-core/1.32.1
183
182
  Content-Type:
184
183
  - application/json
185
184
  Accept:
186
185
  - application/json
187
186
  X-Auth-Token:
188
- - fb5eafb443894cc59c09cf4608dbc5eb
187
+ - f8e9e59847aa47f1b80eb28452cef591
189
188
  response:
190
189
  status:
191
190
  code: 200
192
191
  message: ''
193
192
  headers:
194
193
  X-Compute-Request-Id:
195
- - req-29d54726-4943-4d11-adb8-916918287908
194
+ - req-f3353753-8bf4-48a4-8f61-601aa20ffa79
196
195
  Content-Type:
197
196
  - application/json
198
197
  Content-Length:
199
198
  - '17'
200
199
  X-Openstack-Request-Id:
201
- - req-29d54726-4943-4d11-adb8-916918287908
200
+ - req-f3353753-8bf4-48a4-8f61-601aa20ffa79
202
201
  Date:
203
- - Wed, 08 Jul 2015 12:18:23 GMT
202
+ - Thu, 22 Oct 2015 14:05:06 GMT
204
203
  body:
205
- encoding: US-ASCII
206
- string: ! '{"transfers": []}'
204
+ encoding: UTF-8
205
+ string: '{"transfers": []}'
207
206
  http_version:
208
- recorded_at: Wed, 08 Jul 2015 12:18:23 GMT
207
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
209
208
  - request:
210
209
  method: post
211
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer
210
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer
212
211
  body:
213
212
  encoding: UTF-8
214
- string: ! '{"transfer":{"volume_id":"b80c26fd-1c54-47ff-a366-835a52449aaf","name":"fog-testtransfer-1"}}'
213
+ string: '{"transfer":{"volume_id":"dbddfbab-5f80-4591-821f-b95fe3b72906","name":"fog-testtransfer-1"}}'
215
214
  headers:
216
215
  User-Agent:
217
- - fog/1.32.0 fog-core/1.32.0
218
- Proxy-Connection:
219
- - Keep-Alive
216
+ - fog-core/1.32.1
220
217
  Content-Type:
221
218
  - application/json
222
219
  Accept:
223
220
  - application/json
224
221
  X-Auth-Token:
225
- - fb5eafb443894cc59c09cf4608dbc5eb
222
+ - f8e9e59847aa47f1b80eb28452cef591
226
223
  response:
227
224
  status:
228
225
  code: 202
229
226
  message: ''
230
227
  headers:
231
228
  X-Compute-Request-Id:
232
- - req-a1aa75ce-4488-4b69-8cc0-cfa1ba8d0b49
229
+ - req-dd9afc07-8d65-4f18-bc15-27b72c98cac6
233
230
  Content-Type:
234
231
  - application/json
235
232
  Content-Length:
236
- - '519'
233
+ - '525'
237
234
  X-Openstack-Request-Id:
238
- - req-a1aa75ce-4488-4b69-8cc0-cfa1ba8d0b49
235
+ - req-dd9afc07-8d65-4f18-bc15-27b72c98cac6
239
236
  Date:
240
- - Wed, 08 Jul 2015 12:18:23 GMT
237
+ - Thu, 22 Oct 2015 14:05:07 GMT
241
238
  body:
242
- encoding: US-ASCII
243
- string: ! '{"transfer": {"auth_key": "32d7fed244c4109a", "links": [{"href":
244
- "http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
245
- "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
246
- "rel": "bookmark"}], "created_at": "2015-07-08T12:18:23.476930", "volume_id":
247
- "b80c26fd-1c54-47ff-a366-835a52449aaf", "id": "f47f97c3-49de-4b25-8cf9-b720dbba7c77",
239
+ encoding: UTF-8
240
+ string: '{"transfer": {"auth_key": "5fe51aa673ba2b63", "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
241
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
242
+ "rel": "bookmark"}], "created_at": "2015-10-22T14:05:07.258034", "volume_id":
243
+ "dbddfbab-5f80-4591-821f-b95fe3b72906", "id": "daa7ac14-d4af-4f21-9f26-fb928db98ef1",
248
244
  "name": "fog-testtransfer-1"}}'
249
245
  http_version:
250
- recorded_at: Wed, 08 Jul 2015 12:18:23 GMT
246
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
251
247
  - request:
252
248
  method: get
253
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77
249
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1
254
250
  body:
255
251
  encoding: US-ASCII
256
252
  string: ''
257
253
  headers:
258
254
  User-Agent:
259
- - fog/1.32.0 fog-core/1.32.0
260
- Proxy-Connection:
261
- - Keep-Alive
255
+ - fog-core/1.32.1
262
256
  Content-Type:
263
257
  - application/json
264
258
  Accept:
265
259
  - application/json
266
260
  X-Auth-Token:
267
- - fb5eafb443894cc59c09cf4608dbc5eb
261
+ - f8e9e59847aa47f1b80eb28452cef591
268
262
  response:
269
263
  status:
270
264
  code: 200
271
265
  message: ''
272
266
  headers:
273
267
  X-Compute-Request-Id:
274
- - req-84326a94-25c0-4183-8c17-6d0e87eb12a0
268
+ - req-d7375843-3caf-4e19-bf7d-e35b2aa30493
275
269
  Content-Type:
276
270
  - application/json
277
271
  Content-Length:
278
- - '487'
272
+ - '493'
279
273
  X-Openstack-Request-Id:
280
- - req-84326a94-25c0-4183-8c17-6d0e87eb12a0
274
+ - req-d7375843-3caf-4e19-bf7d-e35b2aa30493
281
275
  Date:
282
- - Wed, 08 Jul 2015 12:18:23 GMT
276
+ - Thu, 22 Oct 2015 14:05:07 GMT
283
277
  body:
284
- encoding: US-ASCII
285
- string: ! '{"transfer": {"created_at": "2015-07-08T12:18:23.000000", "volume_id":
286
- "b80c26fd-1c54-47ff-a366-835a52449aaf", "id": "f47f97c3-49de-4b25-8cf9-b720dbba7c77",
287
- "links": [{"href": "http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
288
- "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
278
+ encoding: UTF-8
279
+ string: '{"transfer": {"created_at": "2015-10-22T14:05:07.000000", "volume_id":
280
+ "dbddfbab-5f80-4591-821f-b95fe3b72906", "id": "daa7ac14-d4af-4f21-9f26-fb928db98ef1",
281
+ "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
282
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
289
283
  "rel": "bookmark"}], "name": "fog-testtransfer-1"}}'
290
284
  http_version:
291
- recorded_at: Wed, 08 Jul 2015 12:18:23 GMT
285
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
292
286
  - request:
293
287
  method: get
294
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/detail?name=fog-testtransfer-1
288
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/detail?name=fog-testtransfer-1
295
289
  body:
296
290
  encoding: US-ASCII
297
291
  string: ''
298
292
  headers:
299
293
  User-Agent:
300
- - fog/1.32.0 fog-core/1.32.0
301
- Proxy-Connection:
302
- - Keep-Alive
294
+ - fog-core/1.32.1
303
295
  Content-Type:
304
296
  - application/json
305
297
  Accept:
306
298
  - application/json
307
299
  X-Auth-Token:
308
- - fb5eafb443894cc59c09cf4608dbc5eb
300
+ - f8e9e59847aa47f1b80eb28452cef591
309
301
  response:
310
302
  status:
311
303
  code: 200
312
304
  message: ''
313
305
  headers:
314
306
  X-Compute-Request-Id:
315
- - req-d748265b-5fe9-44ee-88ae-a996051f7e92
307
+ - req-42c0ec18-c674-42fe-83f6-718e61b79655
316
308
  Content-Type:
317
309
  - application/json
318
310
  Content-Length:
319
- - '490'
311
+ - '496'
320
312
  X-Openstack-Request-Id:
321
- - req-d748265b-5fe9-44ee-88ae-a996051f7e92
313
+ - req-42c0ec18-c674-42fe-83f6-718e61b79655
322
314
  Date:
323
- - Wed, 08 Jul 2015 12:18:23 GMT
315
+ - Thu, 22 Oct 2015 14:05:07 GMT
324
316
  body:
325
- encoding: US-ASCII
326
- string: ! '{"transfers": [{"created_at": "2015-07-08T12:18:23.000000", "volume_id":
327
- "b80c26fd-1c54-47ff-a366-835a52449aaf", "id": "f47f97c3-49de-4b25-8cf9-b720dbba7c77",
328
- "links": [{"href": "http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
329
- "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
317
+ encoding: UTF-8
318
+ string: '{"transfers": [{"created_at": "2015-10-22T14:05:07.000000", "volume_id":
319
+ "dbddfbab-5f80-4591-821f-b95fe3b72906", "id": "daa7ac14-d4af-4f21-9f26-fb928db98ef1",
320
+ "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
321
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
330
322
  "rel": "bookmark"}], "name": "fog-testtransfer-1"}]}'
331
323
  http_version:
332
- recorded_at: Wed, 08 Jul 2015 12:18:23 GMT
324
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
333
325
  - request:
334
326
  method: post
335
- uri: http://devstack.openstack.stack:5000/v2.0/tokens
327
+ uri: http://devstack.openstack.stack:5000/v3/auth/tokens
336
328
  body:
337
329
  encoding: UTF-8
338
- string: ! '{"auth":{"passwordCredentials":{"username":"demo","password":"devstack"},"tenantName":"demo"}}'
330
+ string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"password":"password","domain":{"name":"Default"},"name":"demo"}}},"scope":{"project":{"name":"demo","domain":{"name":"Default"}}}}}'
339
331
  headers:
340
332
  User-Agent:
341
- - fog/1.32.0 fog-core/1.32.0
342
- Proxy-Connection:
343
- - Keep-Alive
333
+ - fog-core/1.32.1
344
334
  Content-Type:
345
335
  - application/json
346
336
  response:
347
337
  status:
348
- code: 200
338
+ code: 201
349
339
  message: ''
350
340
  headers:
351
341
  Date:
352
- - Wed, 08 Jul 2015 12:18:23 GMT
342
+ - Thu, 22 Oct 2015 14:05:07 GMT
353
343
  Server:
354
344
  - Apache/2.4.7 (Ubuntu)
345
+ X-Subject-Token:
346
+ - 47202dc4614f42dbbd75671dff886838
355
347
  Vary:
356
348
  - X-Auth-Token
357
349
  X-Openstack-Request-Id:
358
- - req-bb9f266f-5b3d-498e-bf47-3fb56a86aa0f
350
+ - req-8cd8c173-800b-4ebf-a53f-40e6f38cc54c
359
351
  Content-Length:
360
- - '3431'
352
+ - '5488'
361
353
  Content-Type:
362
354
  - application/json
363
355
  body:
364
- encoding: US-ASCII
365
- string: ! '{"access": {"token": {"issued_at": "2015-07-08T12:18:24.009113",
366
- "expires": "2015-07-08T13:18:23Z", "id": "5470ca7d1eec4630a8c29b236362e2ac",
367
- "tenant": {"description": null, "enabled": true, "id": "7ed57f3de3b943bab8a62ee4a7832100",
368
- "name": "demo"}, "audit_ids": ["eTA95ydeTOuHhxgLZpnsjg"]}, "serviceCatalog":
369
- [{"endpoints": [{"adminURL": "http://devstack.openstack.stack:8774/v2/7ed57f3de3b943bab8a62ee4a7832100",
370
- "region": "RegionOne", "internalURL": "http://devstack.openstack.stack:8774/v2/7ed57f3de3b943bab8a62ee4a7832100",
371
- "id": "5f99314d6aa444aba3316a2c835fae1f", "publicURL": "http://devstack.openstack.stack:8774/v2/7ed57f3de3b943bab8a62ee4a7832100"}],
372
- "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL":
373
- "http://devstack.openstack.stack:9696/", "region": "RegionOne", "internalURL": "http://devstack.openstack.stack:9696/",
374
- "id": "485e6aa876c54d6cbabfabb8b75d2ca8", "publicURL": "http://devstack.openstack.stack:9696/"}],
375
- "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints":
376
- [{"adminURL": "http://devstack.openstack.stack:8776/v2/7ed57f3de3b943bab8a62ee4a7832100",
377
- "region": "RegionOne", "internalURL": "http://devstack.openstack.stack:8776/v2/7ed57f3de3b943bab8a62ee4a7832100",
378
- "id": "3b404d1a53ee40db9366cda01d6a9207", "publicURL": "http://devstack.openstack.stack:8776/v2/7ed57f3de3b943bab8a62ee4a7832100"}],
379
- "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints":
380
- [{"adminURL": "http://devstack.openstack.stack:9292", "region": "RegionOne", "internalURL":
381
- "http://devstack.openstack.stack:9292", "id": "0763767feeda4ac7bb880ce0269c7e91", "publicURL":
382
- "http://devstack.openstack.stack:9292"}], "endpoints_links": [], "type": "image", "name":
383
- "glance"}, {"endpoints": [{"adminURL": "http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100",
384
- "region": "RegionOne", "internalURL": "http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100",
385
- "id": "7b5d83586d744c9e9a8d953de2d7d872", "publicURL": "http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100"}],
386
- "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints":
387
- [{"adminURL": "http://devstack.openstack.stack:8773/", "region": "RegionOne", "internalURL":
388
- "http://devstack.openstack.stack:8773/", "id": "1aab71b806254f9b9d0c8bbad744c7b5", "publicURL":
389
- "http://devstack.openstack.stack:8773/"}], "endpoints_links": [], "type": "ec2", "name":
390
- "ec2"}, {"endpoints": [{"adminURL": "http://devstack.openstack.stack:8774/v2.1/7ed57f3de3b943bab8a62ee4a7832100",
391
- "region": "RegionOne", "internalURL": "http://devstack.openstack.stack:8774/v2.1/7ed57f3de3b943bab8a62ee4a7832100",
392
- "id": "99dbbb73e0ec4d0bb5d2309f0f01d7c6", "publicURL": "http://devstack.openstack.stack:8774/v2.1/7ed57f3de3b943bab8a62ee4a7832100"}],
393
- "endpoints_links": [], "type": "computev21", "name": "novav21"}, {"endpoints":
394
- [{"adminURL": "http://devstack.openstack.stack:35357/v3", "region": "RegionOne", "internalURL":
395
- "http://devstack.openstack.stack:5000/v3", "id": "5f2863be815548a08b981f31a61168b7", "publicURL":
396
- "http://devstack.openstack.stack:5000/v3"}], "endpoints_links": [], "type": "identity",
397
- "name": "keystone"}, {"endpoints": [{"adminURL": "http://devstack.openstack.stack:5000/v3",
398
- "region": "RegionOne", "internalURL": "http://devstack.openstack.stack:5000/v3", "id":
399
- "20c8dd0c12d443a8be582684e97dcc29", "publicURL": "http://devstack.openstack.stack:5000/v3"}],
400
- "endpoints_links": [], "type": "identityv3", "name": ""}], "user": {"username":
401
- "demo", "roles_links": [], "id": "30d694c45f814cc890d6df70623db68d", "roles":
402
- [{"name": "anotherrole"}, {"name": "Member"}], "name": "demo"}, "metadata":
403
- {"is_admin": 0, "roles": ["7c90fc56abdc48f9bfb727b3f4a34564", "b883a05dd56144a18bf65a9b6e16d7dc"]}}}'
356
+ encoding: UTF-8
357
+ string: '{"token": {"methods": ["password"], "roles": [{"id": "1f65752376d340448faa87cc57948386",
358
+ "name": "Member"}, {"id": "099761cba79840c79b31dd91b3b9a1b3", "name": "anotherrole"}],
359
+ "expires_at": "2015-10-22T15:05:07.557615Z", "project": {"domain": {"id":
360
+ "default", "name": "Default"}, "id": "287f46e0cc294b8cb0c276dd71b8710f", "name":
361
+ "demo"}, "catalog": [{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2.1/287f46e0cc294b8cb0c276dd71b8710f",
362
+ "region": "RegionOne", "interface": "public", "id": "3e2b5a87e9f849db8fac482e568ea11c"},
363
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2.1/287f46e0cc294b8cb0c276dd71b8710f",
364
+ "region": "RegionOne", "interface": "internal", "id": "66c60ed7fa03417e8563ca83a166422a"},
365
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2.1/287f46e0cc294b8cb0c276dd71b8710f",
366
+ "region": "RegionOne", "interface": "admin", "id": "8ec86d49ed8a4005908d9f39c917840a"}],
367
+ "type": "computev21", "id": "05736928a6ce48d2962485c2d2c2b96e", "name": "novav21"},
368
+ {"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8773/",
369
+ "region": "RegionOne", "interface": "public", "id": "a363afec032b4c91b37b9727da7e3a77"},
370
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8773/", "region":
371
+ "RegionOne", "interface": "admin", "id": "d2eb5081a1d54b839f4503aba5d11c45"},
372
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8773/", "region":
373
+ "RegionOne", "interface": "internal", "id": "f688ff58b9f14145903b277433bf3f8a"}],
374
+ "type": "ec2", "id": "4f8dd87a24674c408758d52d1eda10a5", "name": "ec2"}, {"endpoints":
375
+ [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v1/287f46e0cc294b8cb0c276dd71b8710f",
376
+ "region": "RegionOne", "interface": "internal", "id": "3b9c1feb44f54394b50c6ae8b2584c02"},
377
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v1/287f46e0cc294b8cb0c276dd71b8710f",
378
+ "region": "RegionOne", "interface": "public", "id": "bfaacfc7fb554bc1a6f4272d35671e04"},
379
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v1/287f46e0cc294b8cb0c276dd71b8710f",
380
+ "region": "RegionOne", "interface": "admin", "id": "cd4be8b96b654b5faf01d3853f9e1199"}],
381
+ "type": "volume", "id": "669396c4d7b846178c5ac94d8f6b95e0", "name": "cinder"},
382
+ {"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:35357/v3",
383
+ "region": "RegionOne", "interface": "admin", "id": "65e5cb67254d4d96bbfca6976fca982f"},
384
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v3", "region":
385
+ "RegionOne", "interface": "public", "id": "ceb1900b305c41b9ad2b81bc423295c4"},
386
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v3", "region":
387
+ "RegionOne", "interface": "internal", "id": "e2b7b9c56b4c4a16ac510f6c0f5f59b1"}],
388
+ "type": "identityv3", "id": "6aa6623e5dc049fdbe50c6825041f122", "name": "keystonev3"},
389
+ {"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v2.0",
390
+ "region": "RegionOne", "interface": "internal", "id": "39ba398d753b415aa6eb5683fa11c0c5"},
391
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:35357/v2.0", "region":
392
+ "RegionOne", "interface": "admin", "id": "3a43b35c73da43399d41c1459de8e70b"},
393
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v2.0", "region":
394
+ "RegionOne", "interface": "public", "id": "e053b151f30a4a7ea89e8457891c5cf5"}],
395
+ "type": "identity", "id": "84358f2684464393be08a296a9925b81", "name": "keystone"},
396
+ {"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f",
397
+ "region": "RegionOne", "interface": "admin", "id": "0580634bf1e04f4fb9b9405b2ea8edf4"},
398
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f",
399
+ "region": "RegionOne", "interface": "internal", "id": "4be15002f6d04efdad157f55b066ccc2"},
400
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f",
401
+ "region": "RegionOne", "interface": "public", "id": "dd4f8a525a654ea09d96f7d19e8e0a01"}],
402
+ "type": "volumev2", "id": "a1037af1005a4533987512c96b448c0a", "name": "cinderv2"},
403
+ {"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:9292",
404
+ "region": "RegionOne", "interface": "internal", "id": "73c7ee8fcb6d4c6f92752c977e50f912"},
405
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:9292", "region":
406
+ "RegionOne", "interface": "admin", "id": "741b4860f2974bcdafa064e82966e538"},
407
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:9292", "region":
408
+ "RegionOne", "interface": "public", "id": "e549e33b1f5746f49893d9ad309e3eb7"}],
409
+ "type": "image", "id": "db3d97e416ed4df1a9882b27a84d3bb5", "name": "glance"},
410
+ {"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2/287f46e0cc294b8cb0c276dd71b8710f",
411
+ "region": "RegionOne", "interface": "public", "id": "bc7e85d694594a25844c3a60a7dc41ce"},
412
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2/287f46e0cc294b8cb0c276dd71b8710f",
413
+ "region": "RegionOne", "interface": "admin", "id": "e1fa825a8bc64daa8e999c9ac6b7fd2e"},
414
+ {"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2/287f46e0cc294b8cb0c276dd71b8710f",
415
+ "region": "RegionOne", "interface": "internal", "id": "fc45663a0738469ab25eec228b2dc600"}],
416
+ "type": "compute", "id": "fdbf81e552cf41388b62b3937d783153", "name": "nova"}],
417
+ "extras": {}, "user": {"domain": {"id": "default", "name": "Default"}, "id":
418
+ "fcb5c32213f0425fbd3df5b49d59c40d", "name": "demo"}, "audit_ids": ["8BgemO7_Sb-QIvhMmfxMDQ"],
419
+ "issued_at": "2015-10-22T14:05:07.557654Z"}}'
404
420
  http_version:
405
- recorded_at: Wed, 08 Jul 2015 12:18:23 GMT
421
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
406
422
  - request:
407
423
  method: get
408
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77
424
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1
409
425
  body:
410
426
  encoding: US-ASCII
411
427
  string: ''
412
428
  headers:
413
429
  User-Agent:
414
- - fog/1.32.0 fog-core/1.32.0
415
- Proxy-Connection:
416
- - Keep-Alive
430
+ - fog-core/1.32.1
417
431
  Content-Type:
418
432
  - application/json
419
433
  Accept:
420
434
  - application/json
421
435
  X-Auth-Token:
422
- - 5470ca7d1eec4630a8c29b236362e2ac
436
+ - 47202dc4614f42dbbd75671dff886838
423
437
  response:
424
438
  status:
425
439
  code: 404
@@ -430,71 +444,67 @@ http_interactions:
430
444
  Content-Type:
431
445
  - application/json; charset=UTF-8
432
446
  X-Compute-Request-Id:
433
- - req-82790bf5-e47f-4d8b-a22c-f40ba7105a3a
447
+ - req-2d85ed8e-3379-4205-8820-5b0ba8321dd6
434
448
  X-Openstack-Request-Id:
435
- - req-82790bf5-e47f-4d8b-a22c-f40ba7105a3a
449
+ - req-2d85ed8e-3379-4205-8820-5b0ba8321dd6
436
450
  Date:
437
- - Wed, 08 Jul 2015 12:18:24 GMT
451
+ - Thu, 22 Oct 2015 14:05:07 GMT
438
452
  body:
439
- encoding: US-ASCII
440
- string: ! '{"itemNotFound": {"message": "Transfer f47f97c3-49de-4b25-8cf9-b720dbba7c77
453
+ encoding: UTF-8
454
+ string: '{"itemNotFound": {"message": "Transfer daa7ac14-d4af-4f21-9f26-fb928db98ef1
441
455
  could not be found.", "code": 404}}'
442
456
  http_version:
443
- recorded_at: Wed, 08 Jul 2015 12:18:24 GMT
457
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
444
458
  - request:
445
459
  method: get
446
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/detail?name=fog-testtransfer-1
460
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/detail?name=fog-testtransfer-1
447
461
  body:
448
462
  encoding: US-ASCII
449
463
  string: ''
450
464
  headers:
451
465
  User-Agent:
452
- - fog/1.32.0 fog-core/1.32.0
453
- Proxy-Connection:
454
- - Keep-Alive
466
+ - fog-core/1.32.1
455
467
  Content-Type:
456
468
  - application/json
457
469
  Accept:
458
470
  - application/json
459
471
  X-Auth-Token:
460
- - 5470ca7d1eec4630a8c29b236362e2ac
472
+ - 47202dc4614f42dbbd75671dff886838
461
473
  response:
462
474
  status:
463
475
  code: 200
464
476
  message: ''
465
477
  headers:
466
478
  X-Compute-Request-Id:
467
- - req-88d29103-b385-4608-8a16-bc53fd4127fc
479
+ - req-3a5edc65-e05e-4833-9693-aac30cb7c416
468
480
  Content-Type:
469
481
  - application/json
470
482
  Content-Length:
471
483
  - '17'
472
484
  X-Openstack-Request-Id:
473
- - req-88d29103-b385-4608-8a16-bc53fd4127fc
485
+ - req-3a5edc65-e05e-4833-9693-aac30cb7c416
474
486
  Date:
475
- - Wed, 08 Jul 2015 12:18:24 GMT
487
+ - Thu, 22 Oct 2015 14:05:07 GMT
476
488
  body:
477
- encoding: US-ASCII
478
- string: ! '{"transfers": []}'
489
+ encoding: UTF-8
490
+ string: '{"transfers": []}'
479
491
  http_version:
480
- recorded_at: Wed, 08 Jul 2015 12:18:24 GMT
492
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
481
493
  - request:
482
494
  method: post
483
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/ec8ff7e8-81e2-4e12-b9fb-3e8890612c2d/accept
495
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/ec8ff7e8-81e2-4e12-b9fb-3e8890612c2d/accept
484
496
  body:
485
497
  encoding: UTF-8
486
- string: ! '{"accept":{"auth_key":"32d7fed244c4109a"}}'
498
+ string: '{"accept":{"auth_key":"5fe51aa673ba2b63"}}'
487
499
  headers:
488
500
  User-Agent:
489
- - fog/1.32.0 fog-core/1.32.0
490
- Proxy-Connection:
491
- - Keep-Alive
501
+ - fog-core/1.32.1
492
502
  Content-Type:
493
503
  - application/json
494
504
  Accept:
495
505
  - application/json
496
506
  X-Auth-Token:
497
- - 5470ca7d1eec4630a8c29b236362e2ac
507
+ - 47202dc4614f42dbbd75671dff886838
498
508
  response:
499
509
  status:
500
510
  code: 404
@@ -505,34 +515,32 @@ http_interactions:
505
515
  Content-Type:
506
516
  - application/json; charset=UTF-8
507
517
  X-Compute-Request-Id:
508
- - req-16bea751-80ef-490f-9d7d-5e2cc70abec3
518
+ - req-c9c84b14-661a-4e3f-bbe1-f8155e1d1f76
509
519
  X-Openstack-Request-Id:
510
- - req-16bea751-80ef-490f-9d7d-5e2cc70abec3
520
+ - req-c9c84b14-661a-4e3f-bbe1-f8155e1d1f76
511
521
  Date:
512
- - Wed, 08 Jul 2015 12:18:24 GMT
522
+ - Thu, 22 Oct 2015 14:05:07 GMT
513
523
  body:
514
- encoding: US-ASCII
515
- string: ! '{"itemNotFound": {"message": "TransferNotFound: Transfer ec8ff7e8-81e2-4e12-b9fb-3e8890612c2d
524
+ encoding: UTF-8
525
+ string: '{"itemNotFound": {"message": "TransferNotFound: Transfer ec8ff7e8-81e2-4e12-b9fb-3e8890612c2d
516
526
  could not be found.", "code": 404}}'
517
527
  http_version:
518
- recorded_at: Wed, 08 Jul 2015 12:18:24 GMT
528
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
519
529
  - request:
520
530
  method: post
521
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77/accept
531
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1/accept
522
532
  body:
523
533
  encoding: UTF-8
524
- string: ! '{"accept":{"auth_key":"invalidauthkey"}}'
534
+ string: '{"accept":{"auth_key":"invalidauthkey"}}'
525
535
  headers:
526
536
  User-Agent:
527
- - fog/1.32.0 fog-core/1.32.0
528
- Proxy-Connection:
529
- - Keep-Alive
537
+ - fog-core/1.32.1
530
538
  Content-Type:
531
539
  - application/json
532
540
  Accept:
533
541
  - application/json
534
542
  X-Auth-Token:
535
- - 5470ca7d1eec4630a8c29b236362e2ac
543
+ - 47202dc4614f42dbbd75671dff886838
536
544
  response:
537
545
  status:
538
546
  code: 400
@@ -543,117 +551,113 @@ http_interactions:
543
551
  Content-Type:
544
552
  - application/json; charset=UTF-8
545
553
  X-Compute-Request-Id:
546
- - req-a91b585e-5cd8-4d1c-842c-3cedf3657398
554
+ - req-cd494a89-4703-401b-ac48-dc02a336e6e4
547
555
  X-Openstack-Request-Id:
548
- - req-a91b585e-5cd8-4d1c-842c-3cedf3657398
556
+ - req-cd494a89-4703-401b-ac48-dc02a336e6e4
549
557
  Date:
550
- - Wed, 08 Jul 2015 12:18:24 GMT
558
+ - Thu, 22 Oct 2015 14:05:07 GMT
551
559
  body:
552
- encoding: US-ASCII
553
- string: ! '{"badRequest": {"message": "Invalid auth key: Attempt to transfer
554
- f47f97c3-49de-4b25-8cf9-b720dbba7c77 with invalid auth key.", "code": 400}}'
560
+ encoding: UTF-8
561
+ string: '{"badRequest": {"message": "Invalid auth key: Attempt to transfer daa7ac14-d4af-4f21-9f26-fb928db98ef1
562
+ with invalid auth key.", "code": 400}}'
555
563
  http_version:
556
- recorded_at: Wed, 08 Jul 2015 12:18:24 GMT
564
+ recorded_at: Thu, 22 Oct 2015 14:04:48 GMT
557
565
  - request:
558
566
  method: post
559
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77/accept
567
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1/accept
560
568
  body:
561
569
  encoding: UTF-8
562
- string: ! '{"accept":{"auth_key":"32d7fed244c4109a"}}'
570
+ string: '{"accept":{"auth_key":"5fe51aa673ba2b63"}}'
563
571
  headers:
564
572
  User-Agent:
565
- - fog/1.32.0 fog-core/1.32.0
566
- Proxy-Connection:
567
- - Keep-Alive
573
+ - fog-core/1.32.1
568
574
  Content-Type:
569
575
  - application/json
570
576
  Accept:
571
577
  - application/json
572
578
  X-Auth-Token:
573
- - 5470ca7d1eec4630a8c29b236362e2ac
579
+ - 47202dc4614f42dbbd75671dff886838
574
580
  response:
575
581
  status:
576
582
  code: 202
577
583
  message: ''
578
584
  headers:
579
585
  X-Compute-Request-Id:
580
- - req-b492d1c2-27c6-4ef9-b5bc-6c9d082276b6
586
+ - req-80c59a61-4729-4068-971c-61859b1f4b89
581
587
  Content-Type:
582
588
  - application/json
583
589
  Content-Length:
584
- - '443'
590
+ - '449'
585
591
  X-Openstack-Request-Id:
586
- - req-b492d1c2-27c6-4ef9-b5bc-6c9d082276b6
592
+ - req-80c59a61-4729-4068-971c-61859b1f4b89
587
593
  Date:
588
- - Wed, 08 Jul 2015 12:18:25 GMT
594
+ - Thu, 22 Oct 2015 14:05:08 GMT
589
595
  body:
590
- encoding: US-ASCII
591
- string: ! '{"transfer": {"links": [{"href": "http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
592
- "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77",
593
- "rel": "bookmark"}], "id": "f47f97c3-49de-4b25-8cf9-b720dbba7c77", "name":
594
- "fog-testtransfer-1", "volume_id": "b80c26fd-1c54-47ff-a366-835a52449aaf"}}'
596
+ encoding: UTF-8
597
+ string: '{"transfer": {"links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
598
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1",
599
+ "rel": "bookmark"}], "id": "daa7ac14-d4af-4f21-9f26-fb928db98ef1", "name":
600
+ "fog-testtransfer-1", "volume_id": "dbddfbab-5f80-4591-821f-b95fe3b72906"}}'
595
601
  http_version:
596
- recorded_at: Wed, 08 Jul 2015 12:18:25 GMT
602
+ recorded_at: Thu, 22 Oct 2015 14:04:49 GMT
597
603
  - request:
598
604
  method: get
599
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
605
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
600
606
  body:
601
607
  encoding: US-ASCII
602
608
  string: ''
603
609
  headers:
604
610
  User-Agent:
605
- - fog/1.32.0 fog-core/1.32.0
606
- Proxy-Connection:
607
- - Keep-Alive
611
+ - fog-core/1.32.1
608
612
  Content-Type:
609
613
  - application/json
610
614
  Accept:
611
615
  - application/json
612
616
  X-Auth-Token:
613
- - 5470ca7d1eec4630a8c29b236362e2ac
617
+ - 47202dc4614f42dbbd75671dff886838
614
618
  response:
615
619
  status:
616
620
  code: 200
617
621
  message: ''
618
622
  headers:
619
623
  X-Compute-Request-Id:
620
- - req-21f82e5e-90cc-41c2-bb46-9b51ebcd4480
624
+ - req-18887bcd-4607-4efc-92ca-9a596d17f946
621
625
  Content-Type:
622
626
  - application/json
623
627
  Content-Length:
624
- - '561'
628
+ - '937'
625
629
  X-Openstack-Request-Id:
626
- - req-21f82e5e-90cc-41c2-bb46-9b51ebcd4480
630
+ - req-18887bcd-4607-4efc-92ca-9a596d17f946
627
631
  Date:
628
- - Wed, 08 Jul 2015 12:18:25 GMT
632
+ - Thu, 22 Oct 2015 14:05:08 GMT
629
633
  body:
630
- encoding: US-ASCII
631
- string: ! '{"volume": {"status": "available", "display_name": "fog-testvolume-1",
632
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
633
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
634
- "os-vol-tenant-attr:tenant_id": "7ed57f3de3b943bab8a62ee4a7832100", "os-volume-replication:driver_data":
635
- null, "display_description": null, "os-volume-replication:extended_status":
636
- null, "volume_type": "lvmdriver-1", "snapshot_id": null, "source_volid": null,
637
- "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "size": 1}}'
634
+ encoding: UTF-8
635
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
636
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
637
+ "rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
638
+ null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
639
+ "size": 1, "user_id": "fcb5c32213f0425fbd3df5b49d59c40d", "os-vol-tenant-attr:tenant_id":
640
+ "287f46e0cc294b8cb0c276dd71b8710f", "metadata": {}, "status": "available",
641
+ "description": null, "multiattach": false, "source_volid": null, "consistencygroup_id":
642
+ null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:05:05.000000",
643
+ "os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
638
644
  http_version:
639
- recorded_at: Wed, 08 Jul 2015 12:18:25 GMT
645
+ recorded_at: Thu, 22 Oct 2015 14:04:49 GMT
640
646
  - request:
641
647
  method: get
642
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77
648
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1
643
649
  body:
644
650
  encoding: US-ASCII
645
651
  string: ''
646
652
  headers:
647
653
  User-Agent:
648
- - fog/1.32.0 fog-core/1.32.0
649
- Proxy-Connection:
650
- - Keep-Alive
654
+ - fog-core/1.32.1
651
655
  Content-Type:
652
656
  - application/json
653
657
  Accept:
654
658
  - application/json
655
659
  X-Auth-Token:
656
- - fb5eafb443894cc59c09cf4608dbc5eb
660
+ - f8e9e59847aa47f1b80eb28452cef591
657
661
  response:
658
662
  status:
659
663
  code: 404
@@ -664,71 +668,67 @@ http_interactions:
664
668
  Content-Type:
665
669
  - application/json; charset=UTF-8
666
670
  X-Compute-Request-Id:
667
- - req-b564f461-a8c0-410f-9ac2-289ec43ec378
671
+ - req-f5b4e2fd-52a5-49fb-b81d-ca9049e6c860
668
672
  X-Openstack-Request-Id:
669
- - req-b564f461-a8c0-410f-9ac2-289ec43ec378
673
+ - req-f5b4e2fd-52a5-49fb-b81d-ca9049e6c860
670
674
  Date:
671
- - Wed, 08 Jul 2015 12:18:25 GMT
675
+ - Thu, 22 Oct 2015 14:05:08 GMT
672
676
  body:
673
- encoding: US-ASCII
674
- string: ! '{"itemNotFound": {"message": "Transfer f47f97c3-49de-4b25-8cf9-b720dbba7c77
677
+ encoding: UTF-8
678
+ string: '{"itemNotFound": {"message": "Transfer daa7ac14-d4af-4f21-9f26-fb928db98ef1
675
679
  could not be found.", "code": 404}}'
676
680
  http_version:
677
- recorded_at: Wed, 08 Jul 2015 12:18:25 GMT
681
+ recorded_at: Thu, 22 Oct 2015 14:04:49 GMT
678
682
  - request:
679
683
  method: get
680
- uri: http://devstack.openstack.stack:8776/v1/a19e9490e4504b0b877c55510dfb2842/os-volume-transfer/detail?name=fog-testtransfer-1
684
+ uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/detail?name=fog-testtransfer-1
681
685
  body:
682
686
  encoding: US-ASCII
683
687
  string: ''
684
688
  headers:
685
689
  User-Agent:
686
- - fog/1.32.0 fog-core/1.32.0
687
- Proxy-Connection:
688
- - Keep-Alive
690
+ - fog-core/1.32.1
689
691
  Content-Type:
690
692
  - application/json
691
693
  Accept:
692
694
  - application/json
693
695
  X-Auth-Token:
694
- - fb5eafb443894cc59c09cf4608dbc5eb
696
+ - f8e9e59847aa47f1b80eb28452cef591
695
697
  response:
696
698
  status:
697
699
  code: 200
698
700
  message: ''
699
701
  headers:
700
702
  X-Compute-Request-Id:
701
- - req-45a04ca4-c3c9-4cde-b37e-1b5e67396ef3
703
+ - req-6bd4054e-8277-4982-8222-9487ef2ebe71
702
704
  Content-Type:
703
705
  - application/json
704
706
  Content-Length:
705
707
  - '17'
706
708
  X-Openstack-Request-Id:
707
- - req-45a04ca4-c3c9-4cde-b37e-1b5e67396ef3
709
+ - req-6bd4054e-8277-4982-8222-9487ef2ebe71
708
710
  Date:
709
- - Wed, 08 Jul 2015 12:18:25 GMT
711
+ - Thu, 22 Oct 2015 14:05:08 GMT
710
712
  body:
711
- encoding: US-ASCII
712
- string: ! '{"transfers": []}'
713
+ encoding: UTF-8
714
+ string: '{"transfers": []}'
713
715
  http_version:
714
- recorded_at: Wed, 08 Jul 2015 12:18:25 GMT
716
+ recorded_at: Thu, 22 Oct 2015 14:04:49 GMT
715
717
  - request:
716
718
  method: get
717
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/f47f97c3-49de-4b25-8cf9-b720dbba7c77
719
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/daa7ac14-d4af-4f21-9f26-fb928db98ef1
718
720
  body:
719
721
  encoding: US-ASCII
720
722
  string: ''
721
723
  headers:
722
724
  User-Agent:
723
- - fog/1.32.0 fog-core/1.32.0
724
- Proxy-Connection:
725
- - Keep-Alive
725
+ - fog-core/1.32.1
726
726
  Content-Type:
727
727
  - application/json
728
728
  Accept:
729
729
  - application/json
730
730
  X-Auth-Token:
731
- - 5470ca7d1eec4630a8c29b236362e2ac
731
+ - 47202dc4614f42dbbd75671dff886838
732
732
  response:
733
733
  status:
734
734
  code: 404
@@ -739,340 +739,334 @@ http_interactions:
739
739
  Content-Type:
740
740
  - application/json; charset=UTF-8
741
741
  X-Compute-Request-Id:
742
- - req-e1ffca03-6e9f-4052-98df-b04d915df641
742
+ - req-c7385dad-c675-4793-ac53-cc8ee5400da9
743
743
  X-Openstack-Request-Id:
744
- - req-e1ffca03-6e9f-4052-98df-b04d915df641
744
+ - req-c7385dad-c675-4793-ac53-cc8ee5400da9
745
745
  Date:
746
- - Wed, 08 Jul 2015 12:18:26 GMT
746
+ - Thu, 22 Oct 2015 14:05:08 GMT
747
747
  body:
748
- encoding: US-ASCII
749
- string: ! '{"itemNotFound": {"message": "Transfer f47f97c3-49de-4b25-8cf9-b720dbba7c77
748
+ encoding: UTF-8
749
+ string: '{"itemNotFound": {"message": "Transfer daa7ac14-d4af-4f21-9f26-fb928db98ef1
750
750
  could not be found.", "code": 404}}'
751
751
  http_version:
752
- recorded_at: Wed, 08 Jul 2015 12:18:26 GMT
752
+ recorded_at: Thu, 22 Oct 2015 14:04:49 GMT
753
753
  - request:
754
754
  method: get
755
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/os-volume-transfer/detail?name=fog-testtransfer-1
755
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/detail?name=fog-testtransfer-1
756
756
  body:
757
757
  encoding: US-ASCII
758
758
  string: ''
759
759
  headers:
760
760
  User-Agent:
761
- - fog/1.32.0 fog-core/1.32.0
762
- Proxy-Connection:
763
- - Keep-Alive
761
+ - fog-core/1.32.1
764
762
  Content-Type:
765
763
  - application/json
766
764
  Accept:
767
765
  - application/json
768
766
  X-Auth-Token:
769
- - 5470ca7d1eec4630a8c29b236362e2ac
767
+ - 47202dc4614f42dbbd75671dff886838
770
768
  response:
771
769
  status:
772
770
  code: 200
773
771
  message: ''
774
772
  headers:
775
773
  X-Compute-Request-Id:
776
- - req-8c4faa1e-3de7-4db9-8048-810ec70ff34e
774
+ - req-9086f86b-5f8a-42bf-be93-4cd7ffcf7405
777
775
  Content-Type:
778
776
  - application/json
779
777
  Content-Length:
780
778
  - '17'
781
779
  X-Openstack-Request-Id:
782
- - req-8c4faa1e-3de7-4db9-8048-810ec70ff34e
780
+ - req-9086f86b-5f8a-42bf-be93-4cd7ffcf7405
783
781
  Date:
784
- - Wed, 08 Jul 2015 12:18:26 GMT
782
+ - Thu, 22 Oct 2015 14:05:08 GMT
785
783
  body:
786
- encoding: US-ASCII
787
- string: ! '{"transfers": []}'
784
+ encoding: UTF-8
785
+ string: '{"transfers": []}'
788
786
  http_version:
789
- recorded_at: Wed, 08 Jul 2015 12:18:26 GMT
787
+ recorded_at: Thu, 22 Oct 2015 14:04:50 GMT
790
788
  - request:
791
789
  method: get
792
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
790
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
793
791
  body:
794
792
  encoding: US-ASCII
795
793
  string: ''
796
794
  headers:
797
795
  User-Agent:
798
- - fog/1.32.0 fog-core/1.32.0
799
- Proxy-Connection:
800
- - Keep-Alive
796
+ - fog-core/1.32.1
801
797
  Content-Type:
802
798
  - application/json
803
799
  Accept:
804
800
  - application/json
805
801
  X-Auth-Token:
806
- - 5470ca7d1eec4630a8c29b236362e2ac
802
+ - 47202dc4614f42dbbd75671dff886838
807
803
  response:
808
804
  status:
809
805
  code: 200
810
806
  message: ''
811
807
  headers:
812
808
  X-Compute-Request-Id:
813
- - req-e91354d3-f4bf-4267-9651-62df9e3d6e4f
809
+ - req-b3745e60-1bde-4928-91a5-5e2696943e0d
814
810
  Content-Type:
815
811
  - application/json
816
812
  Content-Length:
817
- - '561'
813
+ - '937'
818
814
  X-Openstack-Request-Id:
819
- - req-e91354d3-f4bf-4267-9651-62df9e3d6e4f
815
+ - req-b3745e60-1bde-4928-91a5-5e2696943e0d
820
816
  Date:
821
- - Wed, 08 Jul 2015 12:18:26 GMT
817
+ - Thu, 22 Oct 2015 14:05:09 GMT
822
818
  body:
823
- encoding: US-ASCII
824
- string: ! '{"volume": {"status": "available", "display_name": "fog-testvolume-1",
825
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
826
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
827
- "os-vol-tenant-attr:tenant_id": "7ed57f3de3b943bab8a62ee4a7832100", "os-volume-replication:driver_data":
828
- null, "display_description": null, "os-volume-replication:extended_status":
829
- null, "volume_type": "lvmdriver-1", "snapshot_id": null, "source_volid": null,
830
- "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "size": 1}}'
819
+ encoding: UTF-8
820
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
821
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
822
+ "rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
823
+ null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
824
+ "size": 1, "user_id": "fcb5c32213f0425fbd3df5b49d59c40d", "os-vol-tenant-attr:tenant_id":
825
+ "287f46e0cc294b8cb0c276dd71b8710f", "metadata": {}, "status": "available",
826
+ "description": null, "multiattach": false, "source_volid": null, "consistencygroup_id":
827
+ null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:05:05.000000",
828
+ "os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
831
829
  http_version:
832
- recorded_at: Wed, 08 Jul 2015 12:18:26 GMT
830
+ recorded_at: Thu, 22 Oct 2015 14:04:50 GMT
833
831
  - request:
834
- method: delete
835
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
832
+ method: get
833
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
836
834
  body:
837
835
  encoding: US-ASCII
838
836
  string: ''
839
837
  headers:
840
838
  User-Agent:
841
- - fog/1.32.0 fog-core/1.32.0
842
- Proxy-Connection:
843
- - Keep-Alive
839
+ - fog-core/1.32.1
844
840
  Content-Type:
845
841
  - application/json
846
842
  Accept:
847
843
  - application/json
848
844
  X-Auth-Token:
849
- - 5470ca7d1eec4630a8c29b236362e2ac
845
+ - 47202dc4614f42dbbd75671dff886838
850
846
  response:
851
847
  status:
852
- code: 202
848
+ code: 200
853
849
  message: ''
854
850
  headers:
851
+ X-Compute-Request-Id:
852
+ - req-0a268ab4-2b75-4ec2-b8d1-5d8ba286a491
855
853
  Content-Type:
856
- - text/html; charset=UTF-8
854
+ - application/json
857
855
  Content-Length:
858
- - '0'
856
+ - '937'
859
857
  X-Openstack-Request-Id:
860
- - req-552869b5-77fe-4036-b81e-91ba198e3c8c
858
+ - req-0a268ab4-2b75-4ec2-b8d1-5d8ba286a491
861
859
  Date:
862
- - Wed, 08 Jul 2015 12:18:26 GMT
860
+ - Thu, 22 Oct 2015 14:05:09 GMT
863
861
  body:
864
- encoding: US-ASCII
865
- string: ''
862
+ encoding: UTF-8
863
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
864
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
865
+ "rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
866
+ null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
867
+ "size": 1, "user_id": "fcb5c32213f0425fbd3df5b49d59c40d", "os-vol-tenant-attr:tenant_id":
868
+ "287f46e0cc294b8cb0c276dd71b8710f", "metadata": {}, "status": "available",
869
+ "description": null, "multiattach": false, "source_volid": null, "consistencygroup_id":
870
+ null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:05:05.000000",
871
+ "os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
866
872
  http_version:
867
- recorded_at: Wed, 08 Jul 2015 12:18:26 GMT
873
+ recorded_at: Thu, 22 Oct 2015 14:04:50 GMT
868
874
  - request:
869
- method: get
870
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
875
+ method: delete
876
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
871
877
  body:
872
878
  encoding: US-ASCII
873
879
  string: ''
874
880
  headers:
875
881
  User-Agent:
876
- - fog/1.32.0 fog-core/1.32.0
877
- Proxy-Connection:
878
- - Keep-Alive
882
+ - fog-core/1.32.1
879
883
  Content-Type:
880
884
  - application/json
881
885
  Accept:
882
886
  - application/json
883
887
  X-Auth-Token:
884
- - 5470ca7d1eec4630a8c29b236362e2ac
888
+ - 47202dc4614f42dbbd75671dff886838
885
889
  response:
886
890
  status:
887
- code: 200
891
+ code: 202
888
892
  message: ''
889
893
  headers:
890
- X-Compute-Request-Id:
891
- - req-b3d7f8dd-0b62-4dbd-80d3-17332da0f28d
892
894
  Content-Type:
893
- - application/json
895
+ - text/html; charset=UTF-8
894
896
  Content-Length:
895
- - '560'
897
+ - '0'
896
898
  X-Openstack-Request-Id:
897
- - req-b3d7f8dd-0b62-4dbd-80d3-17332da0f28d
899
+ - req-a013cc08-4bf3-45a3-ae28-6ad8e77a74ee
898
900
  Date:
899
- - Wed, 08 Jul 2015 12:18:27 GMT
901
+ - Thu, 22 Oct 2015 14:05:09 GMT
900
902
  body:
901
- encoding: US-ASCII
902
- string: ! '{"volume": {"status": "deleting", "display_name": "fog-testvolume-1",
903
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
904
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
905
- "os-vol-tenant-attr:tenant_id": "7ed57f3de3b943bab8a62ee4a7832100", "os-volume-replication:driver_data":
906
- null, "display_description": null, "os-volume-replication:extended_status":
907
- null, "volume_type": "lvmdriver-1", "snapshot_id": null, "source_volid": null,
908
- "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "size": 1}}'
903
+ encoding: UTF-8
904
+ string: ''
909
905
  http_version:
910
- recorded_at: Wed, 08 Jul 2015 12:18:27 GMT
906
+ recorded_at: Thu, 22 Oct 2015 14:04:50 GMT
911
907
  - request:
912
908
  method: get
913
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
909
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
914
910
  body:
915
911
  encoding: US-ASCII
916
912
  string: ''
917
913
  headers:
918
914
  User-Agent:
919
- - fog/1.32.0 fog-core/1.32.0
920
- Proxy-Connection:
921
- - Keep-Alive
915
+ - fog-core/1.32.1
922
916
  Content-Type:
923
917
  - application/json
924
918
  Accept:
925
919
  - application/json
926
920
  X-Auth-Token:
927
- - 5470ca7d1eec4630a8c29b236362e2ac
921
+ - 47202dc4614f42dbbd75671dff886838
928
922
  response:
929
923
  status:
930
924
  code: 200
931
925
  message: ''
932
926
  headers:
933
927
  X-Compute-Request-Id:
934
- - req-eff4cd0f-74b1-49a4-b80f-44bf9b1979d9
928
+ - req-8f0fd890-101d-4db9-a83a-b66070f5615d
935
929
  Content-Type:
936
930
  - application/json
937
931
  Content-Length:
938
- - '560'
932
+ - '936'
939
933
  X-Openstack-Request-Id:
940
- - req-eff4cd0f-74b1-49a4-b80f-44bf9b1979d9
934
+ - req-8f0fd890-101d-4db9-a83a-b66070f5615d
941
935
  Date:
942
- - Wed, 08 Jul 2015 12:18:28 GMT
936
+ - Thu, 22 Oct 2015 14:05:09 GMT
943
937
  body:
944
- encoding: US-ASCII
945
- string: ! '{"volume": {"status": "deleting", "display_name": "fog-testvolume-1",
946
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
947
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
948
- "os-vol-tenant-attr:tenant_id": "7ed57f3de3b943bab8a62ee4a7832100", "os-volume-replication:driver_data":
949
- null, "display_description": null, "os-volume-replication:extended_status":
950
- null, "volume_type": "lvmdriver-1", "snapshot_id": null, "source_volid": null,
951
- "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "size": 1}}'
938
+ encoding: UTF-8
939
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
940
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
941
+ "rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
942
+ null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
943
+ "size": 1, "user_id": "fcb5c32213f0425fbd3df5b49d59c40d", "os-vol-tenant-attr:tenant_id":
944
+ "287f46e0cc294b8cb0c276dd71b8710f", "metadata": {}, "status": "deleting",
945
+ "description": null, "multiattach": false, "source_volid": null, "consistencygroup_id":
946
+ null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:05:05.000000",
947
+ "os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
952
948
  http_version:
953
- recorded_at: Wed, 08 Jul 2015 12:18:28 GMT
949
+ recorded_at: Thu, 22 Oct 2015 14:04:51 GMT
954
950
  - request:
955
951
  method: get
956
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
952
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
957
953
  body:
958
954
  encoding: US-ASCII
959
955
  string: ''
960
956
  headers:
961
957
  User-Agent:
962
- - fog/1.32.0 fog-core/1.32.0
963
- Proxy-Connection:
964
- - Keep-Alive
958
+ - fog-core/1.32.1
965
959
  Content-Type:
966
960
  - application/json
967
961
  Accept:
968
962
  - application/json
969
963
  X-Auth-Token:
970
- - 5470ca7d1eec4630a8c29b236362e2ac
964
+ - 47202dc4614f42dbbd75671dff886838
971
965
  response:
972
966
  status:
973
967
  code: 200
974
968
  message: ''
975
969
  headers:
976
970
  X-Compute-Request-Id:
977
- - req-c1e260f3-a709-4ec3-80f0-48776d32c86f
971
+ - req-5c02eca8-e6ac-4033-8f8a-df4475fce47e
978
972
  Content-Type:
979
973
  - application/json
980
974
  Content-Length:
981
- - '560'
975
+ - '936'
982
976
  X-Openstack-Request-Id:
983
- - req-c1e260f3-a709-4ec3-80f0-48776d32c86f
977
+ - req-5c02eca8-e6ac-4033-8f8a-df4475fce47e
984
978
  Date:
985
- - Wed, 08 Jul 2015 12:18:31 GMT
979
+ - Thu, 22 Oct 2015 14:05:11 GMT
986
980
  body:
987
- encoding: US-ASCII
988
- string: ! '{"volume": {"status": "deleting", "display_name": "fog-testvolume-1",
989
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
990
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
991
- "os-vol-tenant-attr:tenant_id": "7ed57f3de3b943bab8a62ee4a7832100", "os-volume-replication:driver_data":
992
- null, "display_description": null, "os-volume-replication:extended_status":
993
- null, "volume_type": "lvmdriver-1", "snapshot_id": null, "source_volid": null,
994
- "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "size": 1}}'
981
+ encoding: UTF-8
982
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
983
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
984
+ "rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
985
+ null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
986
+ "size": 1, "user_id": "fcb5c32213f0425fbd3df5b49d59c40d", "os-vol-tenant-attr:tenant_id":
987
+ "287f46e0cc294b8cb0c276dd71b8710f", "metadata": {}, "status": "deleting",
988
+ "description": null, "multiattach": false, "source_volid": null, "consistencygroup_id":
989
+ null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:05:05.000000",
990
+ "os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
995
991
  http_version:
996
- recorded_at: Wed, 08 Jul 2015 12:18:31 GMT
992
+ recorded_at: Thu, 22 Oct 2015 14:04:52 GMT
997
993
  - request:
998
994
  method: get
999
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
995
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
1000
996
  body:
1001
997
  encoding: US-ASCII
1002
998
  string: ''
1003
999
  headers:
1004
1000
  User-Agent:
1005
- - fog/1.32.0 fog-core/1.32.0
1006
- Proxy-Connection:
1007
- - Keep-Alive
1001
+ - fog-core/1.32.1
1008
1002
  Content-Type:
1009
1003
  - application/json
1010
1004
  Accept:
1011
1005
  - application/json
1012
1006
  X-Auth-Token:
1013
- - 5470ca7d1eec4630a8c29b236362e2ac
1007
+ - 47202dc4614f42dbbd75671dff886838
1014
1008
  response:
1015
1009
  status:
1016
1010
  code: 200
1017
1011
  message: ''
1018
1012
  headers:
1019
1013
  X-Compute-Request-Id:
1020
- - req-7a90cb19-9694-4543-b016-94fceb04f3f6
1014
+ - req-601e93da-72ee-4e8f-ad1f-d3e42d21cdb0
1021
1015
  Content-Type:
1022
1016
  - application/json
1023
1017
  Content-Length:
1024
- - '560'
1018
+ - '936'
1025
1019
  X-Openstack-Request-Id:
1026
- - req-7a90cb19-9694-4543-b016-94fceb04f3f6
1020
+ - req-601e93da-72ee-4e8f-ad1f-d3e42d21cdb0
1027
1021
  Date:
1028
- - Wed, 08 Jul 2015 12:18:37 GMT
1022
+ - Thu, 22 Oct 2015 14:05:14 GMT
1029
1023
  body:
1030
- encoding: US-ASCII
1031
- string: ! '{"volume": {"status": "deleting", "display_name": "fog-testvolume-1",
1032
- "attachments": [], "availability_zone": "nova", "bootable": "false", "encrypted":
1033
- false, "created_at": "2015-07-08T12:18:21.000000", "multiattach": "false",
1034
- "os-vol-tenant-attr:tenant_id": "7ed57f3de3b943bab8a62ee4a7832100", "os-volume-replication:driver_data":
1035
- null, "display_description": null, "os-volume-replication:extended_status":
1036
- null, "volume_type": "lvmdriver-1", "snapshot_id": null, "source_volid": null,
1037
- "metadata": {}, "id": "b80c26fd-1c54-47ff-a366-835a52449aaf", "size": 1}}'
1024
+ encoding: UTF-8
1025
+ string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
1026
+ "rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906",
1027
+ "rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
1028
+ null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "dbddfbab-5f80-4591-821f-b95fe3b72906",
1029
+ "size": 1, "user_id": "fcb5c32213f0425fbd3df5b49d59c40d", "os-vol-tenant-attr:tenant_id":
1030
+ "287f46e0cc294b8cb0c276dd71b8710f", "metadata": {}, "status": "deleting",
1031
+ "description": null, "multiattach": false, "source_volid": null, "consistencygroup_id":
1032
+ null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:05:05.000000",
1033
+ "os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
1038
1034
  http_version:
1039
- recorded_at: Wed, 08 Jul 2015 12:18:37 GMT
1035
+ recorded_at: Thu, 22 Oct 2015 14:04:55 GMT
1040
1036
  - request:
1041
1037
  method: get
1042
- uri: http://devstack.openstack.stack:8776/v1/7ed57f3de3b943bab8a62ee4a7832100/volumes/b80c26fd-1c54-47ff-a366-835a52449aaf
1038
+ uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/dbddfbab-5f80-4591-821f-b95fe3b72906
1043
1039
  body:
1044
1040
  encoding: US-ASCII
1045
1041
  string: ''
1046
1042
  headers:
1047
1043
  User-Agent:
1048
- - fog/1.32.0 fog-core/1.32.0
1049
- Proxy-Connection:
1050
- - Keep-Alive
1044
+ - fog-core/1.32.1
1051
1045
  Content-Type:
1052
1046
  - application/json
1053
1047
  Accept:
1054
1048
  - application/json
1055
1049
  X-Auth-Token:
1056
- - 5470ca7d1eec4630a8c29b236362e2ac
1050
+ - 47202dc4614f42dbbd75671dff886838
1057
1051
  response:
1058
1052
  status:
1059
1053
  code: 404
1060
1054
  message: ''
1061
1055
  headers:
1062
1056
  Content-Length:
1063
- - '78'
1057
+ - '109'
1064
1058
  Content-Type:
1065
1059
  - application/json; charset=UTF-8
1066
1060
  X-Compute-Request-Id:
1067
- - req-2516176b-274d-44f9-a8f7-173fad09b80d
1061
+ - req-d494bc42-f643-423c-8830-6a4943ed411d
1068
1062
  X-Openstack-Request-Id:
1069
- - req-2516176b-274d-44f9-a8f7-173fad09b80d
1063
+ - req-d494bc42-f643-423c-8830-6a4943ed411d
1070
1064
  Date:
1071
- - Wed, 08 Jul 2015 12:18:46 GMT
1065
+ - Thu, 22 Oct 2015 14:05:18 GMT
1072
1066
  body:
1073
- encoding: US-ASCII
1074
- string: ! '{"itemNotFound": {"message": "The resource could not be found.",
1075
- "code": 404}}'
1067
+ encoding: UTF-8
1068
+ string: '{"itemNotFound": {"message": "Volume dbddfbab-5f80-4591-821f-b95fe3b72906
1069
+ could not be found.", "code": 404}}'
1076
1070
  http_version:
1077
- recorded_at: Wed, 08 Jul 2015 12:18:46 GMT
1071
+ recorded_at: Thu, 22 Oct 2015 14:04:59 GMT
1078
1072
  recorded_with: VCR 2.9.3