fog 1.36.0 → 1.37.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +61 -0
- data/Rakefile +0 -3
- data/fog.gemspec +4 -3
- data/lib/fog/digitalocean/compute_v2.rb +2 -1
- data/lib/fog/digitalocean/examples/getting_started.md +24 -48
- data/lib/fog/digitalocean/models/compute_v2/server.rb +4 -0
- data/lib/fog/digitalocean/models/compute_v2/ssh_key.rb +17 -16
- data/lib/fog/digitalocean/requests/compute_v2/delete_ssh_key.rb +1 -1
- data/lib/fog/digitalocean/requests/compute_v2/get_image_details.rb +1 -2
- data/lib/fog/openstack.rb +2 -0
- data/lib/fog/openstack/common.rb +46 -0
- data/lib/fog/openstack/compute.rb +3 -1
- data/lib/fog/openstack/core.rb +15 -3
- data/lib/fog/openstack/docs/compute.md +1 -1
- data/lib/fog/openstack/identity.rb +0 -37
- data/lib/fog/openstack/identity_v2.rb +9 -3
- data/lib/fog/openstack/identity_v3.rb +8 -3
- data/lib/fog/openstack/image.rb +1 -41
- data/lib/fog/openstack/image_v1.rb +9 -3
- data/lib/fog/openstack/image_v2.rb +7 -2
- data/lib/fog/openstack/metering.rb +2 -1
- data/lib/fog/openstack/models/compute/server.rb +5 -0
- data/lib/fog/openstack/models/identity_v2/user.rb +6 -2
- data/lib/fog/openstack/models/volume/availability_zone.rb +1 -4
- data/lib/fog/openstack/models/volume/availability_zones.rb +1 -4
- data/lib/fog/openstack/models/volume/transfer.rb +1 -9
- data/lib/fog/openstack/models/volume/transfers.rb +1 -4
- data/lib/fog/openstack/models/volume/volume.rb +6 -18
- data/lib/fog/openstack/models/volume/volume_type.rb +0 -3
- data/lib/fog/openstack/models/volume/volume_types.rb +1 -4
- data/lib/fog/openstack/models/volume/volumes.rb +1 -4
- data/lib/fog/openstack/models/volume_v1/availability_zone.rb +15 -0
- data/lib/fog/openstack/models/volume_v1/availability_zones.rb +16 -0
- data/lib/fog/openstack/models/volume_v1/transfer.rb +18 -0
- data/lib/fog/openstack/models/volume_v1/transfers.rb +16 -0
- data/lib/fog/openstack/models/volume_v1/volume.rb +26 -0
- data/lib/fog/openstack/models/volume_v1/volume_type.rb +16 -0
- data/lib/fog/openstack/models/volume_v1/volume_types.rb +16 -0
- data/lib/fog/openstack/models/volume_v1/volumes.rb +16 -0
- data/lib/fog/openstack/models/volume_v2/availability_zone.rb +15 -0
- data/lib/fog/openstack/models/volume_v2/availability_zones.rb +16 -0
- data/lib/fog/openstack/models/volume_v2/transfer.rb +19 -0
- data/lib/fog/openstack/models/volume_v2/transfers.rb +16 -0
- data/lib/fog/openstack/models/volume_v2/volume.rb +27 -0
- data/lib/fog/openstack/models/volume_v2/volume_type.rb +16 -0
- data/lib/fog/openstack/models/volume_v2/volume_types.rb +16 -0
- data/lib/fog/openstack/models/volume_v2/volumes.rb +16 -0
- data/lib/fog/openstack/network.rb +2 -1
- data/lib/fog/openstack/orchestration.rb +2 -1
- data/lib/fog/openstack/planning.rb +2 -1
- data/lib/fog/openstack/requests/compute/evacuate_server.rb +26 -0
- data/lib/fog/openstack/requests/volume/accept_transfer.rb +8 -10
- data/lib/fog/openstack/requests/volume/create_transfer.rb +8 -10
- data/lib/fog/openstack/requests/volume/create_volume.rb +9 -40
- data/lib/fog/openstack/requests/volume/create_volume_snapshot.rb +13 -31
- data/lib/fog/openstack/requests/volume/create_volume_type.rb +2 -2
- data/lib/fog/openstack/requests/volume/delete_snapshot.rb +2 -2
- data/lib/fog/openstack/requests/volume/delete_transfer.rb +1 -3
- data/lib/fog/openstack/requests/volume/delete_volume.rb +2 -2
- data/lib/fog/openstack/requests/volume/delete_volume_type.rb +2 -2
- data/lib/fog/openstack/requests/volume/extend_volume.rb +2 -2
- data/lib/fog/openstack/requests/volume/get_quota.rb +2 -2
- data/lib/fog/openstack/requests/volume/get_quota_defaults.rb +7 -7
- data/lib/fog/openstack/requests/volume/get_quota_usage.rb +2 -2
- data/lib/fog/openstack/requests/volume/get_snapshot_details.rb +1 -20
- data/lib/fog/openstack/requests/volume/get_transfer_details.rb +1 -1
- data/lib/fog/openstack/requests/volume/get_volume_details.rb +1 -22
- data/lib/fog/openstack/requests/volume/get_volume_type_details.rb +2 -2
- data/lib/fog/openstack/requests/volume/list_snapshots.rb +2 -2
- data/lib/fog/openstack/requests/volume/list_snapshots_detailed.rb +2 -2
- data/lib/fog/openstack/requests/volume/list_transfers.rb +1 -1
- data/lib/fog/openstack/requests/volume/list_transfers_detailed.rb +1 -1
- data/lib/fog/openstack/requests/volume/list_volume_types.rb +2 -2
- data/lib/fog/openstack/requests/volume/list_volumes.rb +1 -34
- data/lib/fog/openstack/requests/volume/list_volumes_detailed.rb +1 -34
- data/lib/fog/openstack/requests/volume/list_zones.rb +2 -2
- data/lib/fog/openstack/requests/volume/set_tenant.rb +2 -2
- data/lib/fog/openstack/requests/volume/update_quota.rb +2 -2
- data/lib/fog/openstack/requests/volume/update_volume_type.rb +2 -2
- data/lib/fog/openstack/requests/volume_v1/accept_transfer.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/create_transfer.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/create_volume.rb +49 -0
- data/lib/fog/openstack/requests/volume_v1/create_volume_snapshot.rb +44 -0
- data/lib/fog/openstack/requests/volume_v1/create_volume_type.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/delete_snapshot.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/delete_transfer.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/delete_volume.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/delete_volume_type.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/extend_volume.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/get_quota.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/get_quota_defaults.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/get_quota_usage.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/get_snapshot_details.rb +32 -0
- data/lib/fog/openstack/requests/volume_v1/get_transfer_details.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/get_volume_details.rb +35 -0
- data/lib/fog/openstack/requests/volume_v1/get_volume_type_details.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/list_snapshots.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/list_snapshots_detailed.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/list_transfers.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/list_transfers_detailed.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/list_volume_types.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/list_volumes.rb +46 -0
- data/lib/fog/openstack/requests/volume_v1/list_volumes_detailed.rb +46 -0
- data/lib/fog/openstack/requests/volume_v1/list_zones.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/real.rb +11 -0
- data/lib/fog/openstack/requests/volume_v1/real_mock.rb +14 -0
- data/lib/fog/openstack/requests/volume_v1/set_tenant.rb +2 -0
- data/lib/fog/openstack/requests/volume_v1/update_quota.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/accept_transfer.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/create_transfer.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/create_volume.rb +49 -0
- data/lib/fog/openstack/requests/volume_v2/create_volume_snapshot.rb +43 -0
- data/lib/fog/openstack/requests/volume_v2/create_volume_type.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/delete_snapshot.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/delete_transfer.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/delete_volume.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/delete_volume_type.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/extend_volume.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/get_quota.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/get_quota_defaults.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/get_quota_usage.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/get_snapshot_details.rb +32 -0
- data/lib/fog/openstack/requests/volume_v2/get_transfer_details.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/get_volume_details.rb +35 -0
- data/lib/fog/openstack/requests/volume_v2/get_volume_type_details.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/list_snapshots.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/list_snapshots_detailed.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/list_transfers.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/list_transfers_detailed.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/list_volume_types.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/list_volumes.rb +46 -0
- data/lib/fog/openstack/requests/volume_v2/list_volumes_detailed.rb +46 -0
- data/lib/fog/openstack/requests/volume_v2/list_zones.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/real.rb +11 -0
- data/lib/fog/openstack/requests/volume_v2/real_mock.rb +14 -0
- data/lib/fog/openstack/requests/volume_v2/set_tenant.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/update_quota.rb +2 -0
- data/lib/fog/openstack/requests/volume_v2/update_volume_type.rb +2 -0
- data/lib/fog/openstack/storage.rb +2 -1
- data/lib/fog/openstack/volume.rb +21 -176
- data/lib/fog/openstack/volume_v1.rb +163 -0
- data/lib/fog/openstack/volume_v2.rb +164 -0
- data/lib/fog/rackspace/compute_v2.rb +1 -0
- data/lib/fog/rackspace/docs/compute_v2.md +1 -1
- data/lib/fog/rackspace/models/compute_v2/server.rb +14 -0
- data/lib/fog/rackspace/requests/compute_v2/get_vnc_console.rb +45 -0
- data/lib/fog/rackspace/requests/storage/put_container.rb +10 -6
- data/lib/fog/vcloud_director/compute.rb +18 -2
- data/lib/fog/vcloud_director/models/compute/disks.rb +6 -0
- data/lib/fog/vcloud_director/models/compute/networks.rb +7 -2
- data/lib/fog/vcloud_director/models/compute/vdc.rb +5 -0
- data/lib/fog/vcloud_director/models/compute/vm.rb +15 -1
- data/lib/fog/vcloud_director/parsers/compute/vm.rb +4 -0
- data/lib/fog/vcloud_director/parsers/compute/vms.rb +4 -0
- data/lib/fog/vcloud_director/requests/compute/delete_vapp.rb +30 -0
- data/lib/fog/vcloud_director/requests/compute/get_catalog.rb +24 -3
- data/lib/fog/vcloud_director/requests/compute/get_catalog_item.rb +23 -0
- data/lib/fog/vcloud_director/requests/compute/get_metadata.rb +11 -0
- data/lib/fog/vcloud_director/requests/compute/get_vapp.rb +1 -0
- data/lib/fog/vcloud_director/requests/compute/get_vm.rb +46 -0
- data/lib/fog/vcloud_director/requests/compute/get_vm_disks.rb +20 -0
- data/lib/fog/vcloud_director/requests/compute/get_vm_network.rb +25 -0
- data/lib/fog/vcloud_director/requests/compute/get_vms.rb +13 -0
- data/lib/fog/vcloud_director/requests/compute/instantiate_vapp_template.rb +70 -0
- data/lib/fog/vcloud_director/requests/compute/post_power_on_vapp.rb +35 -0
- data/lib/fog/vcloud_director/requests/compute/post_reconfigure_vm.rb +118 -0
- data/lib/fog/vcloud_director/requests/compute/post_update_vapp_metadata.rb +34 -0
- data/lib/fog/vcloud_director/requests/compute/put_guest_customization_section_vapp.rb +2 -1
- data/lib/fog/vcloud_director/requests/compute/put_network_connection_system_section_vapp.rb +31 -0
- data/lib/fog/version.rb +1 -1
- data/lib/tasks/changelog_task.rb +1 -0
- data/spec/fog/openstack/shared_context.rb +11 -2
- data/spec/fog/openstack/volume/common_setup.yml +74 -50
- data/spec/fog/openstack/volume/volume_crud.yml +286 -236
- data/spec/fog/openstack/volume/volume_extend.yml +270 -363
- data/spec/fog/openstack/volume/volume_transfer_and_accept.yml +418 -424
- data/spec/fog/openstack/volume/volume_transfer_and_delete.yml +292 -321
- data/spec/fog/openstack/volume/volume_type_read.yml +30 -36
- data/spec/fog/openstack/volume_spec.rb +251 -224
- data/spec/fog/openstack/volume_v1/common_setup.yml +100 -0
- data/spec/fog/openstack/volume_v1/volume_crud.yml +535 -0
- data/spec/fog/openstack/volume_v1/volume_extend.yml +596 -0
- data/spec/fog/openstack/volume_v1/volume_transfer_and_accept.yml +1010 -0
- data/spec/fog/openstack/volume_v1/volume_transfer_and_delete.yml +645 -0
- data/spec/fog/openstack/volume_v1/volume_type_read.yml +114 -0
- data/spec/fog/openstack/volume_v2/common_setup.yml +100 -0
- data/spec/fog/openstack/volume_v2/volume_crud.yml +611 -0
- data/spec/fog/openstack/volume_v2/volume_extend.yml +669 -0
- data/spec/fog/openstack/volume_v2/volume_transfer_and_accept.yml +1072 -0
- data/spec/fog/openstack/volume_v2/volume_transfer_and_delete.yml +666 -0
- data/spec/fog/openstack/volume_v2/volume_type_read.yml +114 -0
- data/tests/helpers/mock_helper.rb +0 -4
- data/tests/openstack/authenticate_tests.rb +4 -0
- data/tests/openstack/volume_tests.rb +4 -0
- data/tests/rackspace/requests/compute_v2/server_tests.rb +4 -0
- metadata +135 -152
- data/lib/fog/bin/vsphere.rb +0 -28
- data/lib/fog/vsphere.rb +0 -1
- data/lib/fog/vsphere/compute.rb +0 -474
- data/lib/fog/vsphere/core.rb +0 -39
- data/lib/fog/vsphere/models/compute/cluster.rb +0 -28
- data/lib/fog/vsphere/models/compute/clusters.rb +0 -23
- data/lib/fog/vsphere/models/compute/customfield.rb +0 -16
- data/lib/fog/vsphere/models/compute/customfields.rb +0 -24
- data/lib/fog/vsphere/models/compute/customvalue.rb +0 -14
- data/lib/fog/vsphere/models/compute/customvalues.rb +0 -34
- data/lib/fog/vsphere/models/compute/datacenter.rb +0 -44
- data/lib/fog/vsphere/models/compute/datacenters.rb +0 -20
- data/lib/fog/vsphere/models/compute/datastore.rb +0 -21
- data/lib/fog/vsphere/models/compute/datastores.rb +0 -22
- data/lib/fog/vsphere/models/compute/folder.rb +0 -24
- data/lib/fog/vsphere/models/compute/folders.rb +0 -24
- data/lib/fog/vsphere/models/compute/interface.rb +0 -91
- data/lib/fog/vsphere/models/compute/interfaces.rb +0 -67
- data/lib/fog/vsphere/models/compute/interfacetype.rb +0 -22
- data/lib/fog/vsphere/models/compute/interfacetypes.rb +0 -35
- data/lib/fog/vsphere/models/compute/network.rb +0 -18
- data/lib/fog/vsphere/models/compute/networks.rb +0 -23
- data/lib/fog/vsphere/models/compute/process.rb +0 -18
- data/lib/fog/vsphere/models/compute/resource_pool.rb +0 -19
- data/lib/fog/vsphere/models/compute/resource_pools.rb +0 -23
- data/lib/fog/vsphere/models/compute/scsicontroller.rb +0 -16
- data/lib/fog/vsphere/models/compute/server.rb +0 -325
- data/lib/fog/vsphere/models/compute/servers.rb +0 -37
- data/lib/fog/vsphere/models/compute/servertype.rb +0 -36
- data/lib/fog/vsphere/models/compute/servertypes.rb +0 -24
- data/lib/fog/vsphere/models/compute/snapshot.rb +0 -35
- data/lib/fog/vsphere/models/compute/snapshots.rb +0 -27
- data/lib/fog/vsphere/models/compute/template.rb +0 -11
- data/lib/fog/vsphere/models/compute/templates.rb +0 -20
- data/lib/fog/vsphere/models/compute/volume.rb +0 -99
- data/lib/fog/vsphere/models/compute/volumes.rb +0 -54
- data/lib/fog/vsphere/requests/compute/cloudinit_to_customspec.rb +0 -65
- data/lib/fog/vsphere/requests/compute/create_folder.rb +0 -22
- data/lib/fog/vsphere/requests/compute/create_vm.rb +0 -227
- data/lib/fog/vsphere/requests/compute/current_time.rb +0 -18
- data/lib/fog/vsphere/requests/compute/get_cluster.rb +0 -25
- data/lib/fog/vsphere/requests/compute/get_compute_resource.rb +0 -41
- data/lib/fog/vsphere/requests/compute/get_datacenter.rb +0 -31
- data/lib/fog/vsphere/requests/compute/get_datastore.rb +0 -30
- data/lib/fog/vsphere/requests/compute/get_folder.rb +0 -74
- data/lib/fog/vsphere/requests/compute/get_interface_type.rb +0 -15
- data/lib/fog/vsphere/requests/compute/get_network.rb +0 -59
- data/lib/fog/vsphere/requests/compute/get_resource_pool.rb +0 -26
- data/lib/fog/vsphere/requests/compute/get_server_type.rb +0 -32
- data/lib/fog/vsphere/requests/compute/get_template.rb +0 -16
- data/lib/fog/vsphere/requests/compute/get_virtual_machine.rb +0 -57
- data/lib/fog/vsphere/requests/compute/get_vm_first_scsi_controller.rb +0 -26
- data/lib/fog/vsphere/requests/compute/list_child_snapshots.rb +0 -71
- data/lib/fog/vsphere/requests/compute/list_clusters.rb +0 -72
- data/lib/fog/vsphere/requests/compute/list_compute_resources.rb +0 -92
- data/lib/fog/vsphere/requests/compute/list_customfields.rb +0 -21
- data/lib/fog/vsphere/requests/compute/list_datacenters.rb +0 -53
- data/lib/fog/vsphere/requests/compute/list_datastores.rb +0 -40
- data/lib/fog/vsphere/requests/compute/list_folders.rb +0 -44
- data/lib/fog/vsphere/requests/compute/list_interface_types.rb +0 -25
- data/lib/fog/vsphere/requests/compute/list_networks.rb +0 -38
- data/lib/fog/vsphere/requests/compute/list_processes.rb +0 -41
- data/lib/fog/vsphere/requests/compute/list_resource_pools.rb +0 -38
- data/lib/fog/vsphere/requests/compute/list_server_types.rb +0 -54
- data/lib/fog/vsphere/requests/compute/list_templates.rb +0 -48
- data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +0 -80
- data/lib/fog/vsphere/requests/compute/list_vm_customvalues.rb +0 -20
- data/lib/fog/vsphere/requests/compute/list_vm_interfaces.rb +0 -63
- data/lib/fog/vsphere/requests/compute/list_vm_snapshots.rb +0 -66
- data/lib/fog/vsphere/requests/compute/list_vm_volumes.rb +0 -52
- data/lib/fog/vsphere/requests/compute/modify_vm_interface.rb +0 -59
- data/lib/fog/vsphere/requests/compute/modify_vm_volume.rb +0 -25
- data/lib/fog/vsphere/requests/compute/revert_to_snapshot.rb +0 -30
- data/lib/fog/vsphere/requests/compute/set_vm_customvalue.rb +0 -17
- data/lib/fog/vsphere/requests/compute/vm_clone.rb +0 -727
- data/lib/fog/vsphere/requests/compute/vm_config_vnc.rb +0 -45
- data/lib/fog/vsphere/requests/compute/vm_destroy.rb +0 -23
- data/lib/fog/vsphere/requests/compute/vm_execute.rb +0 -47
- data/lib/fog/vsphere/requests/compute/vm_migrate.rb +0 -33
- data/lib/fog/vsphere/requests/compute/vm_power_off.rb +0 -39
- data/lib/fog/vsphere/requests/compute/vm_power_on.rb +0 -26
- data/lib/fog/vsphere/requests/compute/vm_reboot.rb +0 -31
- data/lib/fog/vsphere/requests/compute/vm_reconfig_cpus.rb +0 -23
- data/lib/fog/vsphere/requests/compute/vm_reconfig_hardware.rb +0 -24
- data/lib/fog/vsphere/requests/compute/vm_reconfig_memory.rb +0 -23
- data/lib/fog/vsphere/requests/compute/vm_take_snapshot.rb +0 -37
- data/tests/vsphere/compute_tests.rb +0 -53
- data/tests/vsphere/models/compute/server_tests.rb +0 -70
- data/tests/vsphere/models/compute/servers_tests.rb +0 -15
- data/tests/vsphere/requests/compute/current_time_tests.rb +0 -12
- data/tests/vsphere/requests/compute/get_network_tests.rb +0 -48
- data/tests/vsphere/requests/compute/list_child_snapshots_tests.rb +0 -10
- data/tests/vsphere/requests/compute/list_clusters_tests.rb +0 -11
- data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +0 -38
- data/tests/vsphere/requests/compute/list_vm_snapshots_tests.rb +0 -10
- data/tests/vsphere/requests/compute/revert_to_snapshot_tests.rb +0 -15
- data/tests/vsphere/requests/compute/set_vm_customvalue_tests.rb +0 -20
- data/tests/vsphere/requests/compute/vm_clone_tests.rb +0 -50
- data/tests/vsphere/requests/compute/vm_config_vnc_tests.rb +0 -19
- data/tests/vsphere/requests/compute/vm_destroy_tests.rb +0 -17
- data/tests/vsphere/requests/compute/vm_migrate_tests.rb +0 -16
- data/tests/vsphere/requests/compute/vm_power_off_tests.rb +0 -26
- data/tests/vsphere/requests/compute/vm_power_on_tests.rb +0 -17
- data/tests/vsphere/requests/compute/vm_reboot_tests.rb +0 -26
- data/tests/vsphere/requests/compute/vm_reconfig_cpus_tests.rb +0 -19
- data/tests/vsphere/requests/compute/vm_reconfig_hardware_tests.rb +0 -19
- data/tests/vsphere/requests/compute/vm_reconfig_memory_tests.rb +0 -19
- 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/
|
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
|
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
|
-
-
|
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-
|
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-
|
30
|
+
- req-04799a7f-491c-4f97-83f7-f720ab196b93
|
33
31
|
Date:
|
34
|
-
-
|
32
|
+
- Thu, 22 Oct 2015 14:05:05 GMT
|
35
33
|
body:
|
36
|
-
encoding:
|
37
|
-
string:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: '{"volumes": []}'
|
38
36
|
http_version:
|
39
|
-
recorded_at:
|
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/
|
40
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes
|
43
41
|
body:
|
44
42
|
encoding: UTF-8
|
45
|
-
string:
|
43
|
+
string: '{"volume":{"name":"fog-testvolume-1","description":null,"size":1}}'
|
46
44
|
headers:
|
47
45
|
User-Agent:
|
48
|
-
- fog
|
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
|
-
-
|
52
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
57
53
|
response:
|
58
54
|
status:
|
59
|
-
code:
|
55
|
+
code: 202
|
60
56
|
message: ''
|
61
57
|
headers:
|
62
58
|
X-Compute-Request-Id:
|
63
|
-
- req-
|
59
|
+
- req-b8c9eba3-614b-4874-a42d-6e39d8aa36b6
|
64
60
|
Content-Type:
|
65
61
|
- application/json
|
66
62
|
Content-Length:
|
67
|
-
- '
|
63
|
+
- '778'
|
68
64
|
X-Openstack-Request-Id:
|
69
|
-
- req-
|
65
|
+
- req-b8c9eba3-614b-4874-a42d-6e39d8aa36b6
|
70
66
|
Date:
|
71
|
-
-
|
67
|
+
- Thu, 22 Oct 2015 14:05:05 GMT
|
72
68
|
body:
|
73
|
-
encoding:
|
74
|
-
string:
|
75
|
-
"attachments": [], "
|
76
|
-
|
77
|
-
"
|
78
|
-
|
79
|
-
"
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
102
|
+
- req-7004aa54-40b1-45d9-8b71-29ab79b8bea5
|
106
103
|
Content-Type:
|
107
104
|
- application/json
|
108
105
|
Content-Length:
|
109
|
-
- '
|
106
|
+
- '1047'
|
110
107
|
X-Openstack-Request-Id:
|
111
|
-
- req-
|
108
|
+
- req-7004aa54-40b1-45d9-8b71-29ab79b8bea5
|
112
109
|
Date:
|
113
|
-
-
|
110
|
+
- Thu, 22 Oct 2015 14:05:05 GMT
|
114
111
|
body:
|
115
|
-
encoding:
|
116
|
-
string:
|
117
|
-
"
|
118
|
-
|
119
|
-
"
|
120
|
-
|
121
|
-
|
122
|
-
"
|
123
|
-
|
124
|
-
null, "
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
148
|
+
- req-165d6c6b-801b-4916-85db-60bfa8a64718
|
151
149
|
Content-Type:
|
152
150
|
- application/json
|
153
151
|
Content-Length:
|
154
|
-
- '
|
152
|
+
- '1079'
|
155
153
|
X-Openstack-Request-Id:
|
156
|
-
- req-
|
154
|
+
- req-165d6c6b-801b-4916-85db-60bfa8a64718
|
157
155
|
Date:
|
158
|
-
-
|
156
|
+
- Thu, 22 Oct 2015 14:05:06 GMT
|
159
157
|
body:
|
160
|
-
encoding:
|
161
|
-
string:
|
162
|
-
"
|
163
|
-
|
164
|
-
"
|
165
|
-
null, "
|
166
|
-
|
167
|
-
"
|
168
|
-
|
169
|
-
null, "
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
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-
|
200
|
+
- req-f3353753-8bf4-48a4-8f61-601aa20ffa79
|
202
201
|
Date:
|
203
|
-
-
|
202
|
+
- Thu, 22 Oct 2015 14:05:06 GMT
|
204
203
|
body:
|
205
|
-
encoding:
|
206
|
-
string:
|
204
|
+
encoding: UTF-8
|
205
|
+
string: '{"transfers": []}'
|
207
206
|
http_version:
|
208
|
-
recorded_at:
|
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/
|
210
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer
|
212
211
|
body:
|
213
212
|
encoding: UTF-8
|
214
|
-
string:
|
213
|
+
string: '{"transfer":{"volume_id":"dbddfbab-5f80-4591-821f-b95fe3b72906","name":"fog-testtransfer-1"}}'
|
215
214
|
headers:
|
216
215
|
User-Agent:
|
217
|
-
- fog
|
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
|
-
-
|
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-
|
229
|
+
- req-dd9afc07-8d65-4f18-bc15-27b72c98cac6
|
233
230
|
Content-Type:
|
234
231
|
- application/json
|
235
232
|
Content-Length:
|
236
|
-
- '
|
233
|
+
- '525'
|
237
234
|
X-Openstack-Request-Id:
|
238
|
-
- req-
|
235
|
+
- req-dd9afc07-8d65-4f18-bc15-27b72c98cac6
|
239
236
|
Date:
|
240
|
-
-
|
237
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
241
238
|
body:
|
242
|
-
encoding:
|
243
|
-
string:
|
244
|
-
"http://devstack.openstack.stack:8776/
|
245
|
-
"rel": "
|
246
|
-
"
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
268
|
+
- req-d7375843-3caf-4e19-bf7d-e35b2aa30493
|
275
269
|
Content-Type:
|
276
270
|
- application/json
|
277
271
|
Content-Length:
|
278
|
-
- '
|
272
|
+
- '493'
|
279
273
|
X-Openstack-Request-Id:
|
280
|
-
- req-
|
274
|
+
- req-d7375843-3caf-4e19-bf7d-e35b2aa30493
|
281
275
|
Date:
|
282
|
-
-
|
276
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
283
277
|
body:
|
284
|
-
encoding:
|
285
|
-
string:
|
286
|
-
"
|
287
|
-
"links": [{"href": "http://devstack.openstack.stack:8776/
|
288
|
-
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
307
|
+
- req-42c0ec18-c674-42fe-83f6-718e61b79655
|
316
308
|
Content-Type:
|
317
309
|
- application/json
|
318
310
|
Content-Length:
|
319
|
-
- '
|
311
|
+
- '496'
|
320
312
|
X-Openstack-Request-Id:
|
321
|
-
- req-
|
313
|
+
- req-42c0ec18-c674-42fe-83f6-718e61b79655
|
322
314
|
Date:
|
323
|
-
-
|
315
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
324
316
|
body:
|
325
|
-
encoding:
|
326
|
-
string:
|
327
|
-
"
|
328
|
-
"links": [{"href": "http://devstack.openstack.stack:8776/
|
329
|
-
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/
|
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:
|
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/
|
327
|
+
uri: http://devstack.openstack.stack:5000/v3/auth/tokens
|
336
328
|
body:
|
337
329
|
encoding: UTF-8
|
338
|
-
string:
|
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
|
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:
|
338
|
+
code: 201
|
349
339
|
message: ''
|
350
340
|
headers:
|
351
341
|
Date:
|
352
|
-
-
|
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-
|
350
|
+
- req-8cd8c173-800b-4ebf-a53f-40e6f38cc54c
|
359
351
|
Content-Length:
|
360
|
-
- '
|
352
|
+
- '5488'
|
361
353
|
Content-Type:
|
362
354
|
- application/json
|
363
355
|
body:
|
364
|
-
encoding:
|
365
|
-
string:
|
366
|
-
"
|
367
|
-
"
|
368
|
-
"name": "
|
369
|
-
[{"endpoints": [{"
|
370
|
-
"region": "RegionOne", "
|
371
|
-
"
|
372
|
-
"
|
373
|
-
"
|
374
|
-
"
|
375
|
-
"
|
376
|
-
[{"
|
377
|
-
"region": "RegionOne", "
|
378
|
-
"
|
379
|
-
"
|
380
|
-
|
381
|
-
"
|
382
|
-
"
|
383
|
-
"
|
384
|
-
"region": "RegionOne", "
|
385
|
-
"
|
386
|
-
"
|
387
|
-
|
388
|
-
"
|
389
|
-
"
|
390
|
-
|
391
|
-
"region": "RegionOne", "
|
392
|
-
"
|
393
|
-
"
|
394
|
-
|
395
|
-
"
|
396
|
-
"
|
397
|
-
"
|
398
|
-
"region": "RegionOne", "
|
399
|
-
"
|
400
|
-
"
|
401
|
-
"
|
402
|
-
|
403
|
-
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
447
|
+
- req-2d85ed8e-3379-4205-8820-5b0ba8321dd6
|
434
448
|
X-Openstack-Request-Id:
|
435
|
-
- req-
|
449
|
+
- req-2d85ed8e-3379-4205-8820-5b0ba8321dd6
|
436
450
|
Date:
|
437
|
-
-
|
451
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
438
452
|
body:
|
439
|
-
encoding:
|
440
|
-
string:
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
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-
|
485
|
+
- req-3a5edc65-e05e-4833-9693-aac30cb7c416
|
474
486
|
Date:
|
475
|
-
-
|
487
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
476
488
|
body:
|
477
|
-
encoding:
|
478
|
-
string:
|
489
|
+
encoding: UTF-8
|
490
|
+
string: '{"transfers": []}'
|
479
491
|
http_version:
|
480
|
-
recorded_at:
|
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/
|
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:
|
498
|
+
string: '{"accept":{"auth_key":"5fe51aa673ba2b63"}}'
|
487
499
|
headers:
|
488
500
|
User-Agent:
|
489
|
-
- fog
|
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
|
-
-
|
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-
|
518
|
+
- req-c9c84b14-661a-4e3f-bbe1-f8155e1d1f76
|
509
519
|
X-Openstack-Request-Id:
|
510
|
-
- req-
|
520
|
+
- req-c9c84b14-661a-4e3f-bbe1-f8155e1d1f76
|
511
521
|
Date:
|
512
|
-
-
|
522
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
513
523
|
body:
|
514
|
-
encoding:
|
515
|
-
string:
|
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:
|
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/
|
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:
|
534
|
+
string: '{"accept":{"auth_key":"invalidauthkey"}}'
|
525
535
|
headers:
|
526
536
|
User-Agent:
|
527
|
-
- fog
|
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
|
-
-
|
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-
|
554
|
+
- req-cd494a89-4703-401b-ac48-dc02a336e6e4
|
547
555
|
X-Openstack-Request-Id:
|
548
|
-
- req-
|
556
|
+
- req-cd494a89-4703-401b-ac48-dc02a336e6e4
|
549
557
|
Date:
|
550
|
-
-
|
558
|
+
- Thu, 22 Oct 2015 14:05:07 GMT
|
551
559
|
body:
|
552
|
-
encoding:
|
553
|
-
string:
|
554
|
-
|
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:
|
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/
|
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:
|
570
|
+
string: '{"accept":{"auth_key":"5fe51aa673ba2b63"}}'
|
563
571
|
headers:
|
564
572
|
User-Agent:
|
565
|
-
- fog
|
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
|
-
-
|
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-
|
586
|
+
- req-80c59a61-4729-4068-971c-61859b1f4b89
|
581
587
|
Content-Type:
|
582
588
|
- application/json
|
583
589
|
Content-Length:
|
584
|
-
- '
|
590
|
+
- '449'
|
585
591
|
X-Openstack-Request-Id:
|
586
|
-
- req-
|
592
|
+
- req-80c59a61-4729-4068-971c-61859b1f4b89
|
587
593
|
Date:
|
588
|
-
-
|
594
|
+
- Thu, 22 Oct 2015 14:05:08 GMT
|
589
595
|
body:
|
590
|
-
encoding:
|
591
|
-
string:
|
592
|
-
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/
|
593
|
-
"rel": "bookmark"}], "id": "
|
594
|
-
"fog-testtransfer-1", "volume_id": "
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
624
|
+
- req-18887bcd-4607-4efc-92ca-9a596d17f946
|
621
625
|
Content-Type:
|
622
626
|
- application/json
|
623
627
|
Content-Length:
|
624
|
-
- '
|
628
|
+
- '937'
|
625
629
|
X-Openstack-Request-Id:
|
626
|
-
- req-
|
630
|
+
- req-18887bcd-4607-4efc-92ca-9a596d17f946
|
627
631
|
Date:
|
628
|
-
-
|
632
|
+
- Thu, 22 Oct 2015 14:05:08 GMT
|
629
633
|
body:
|
630
|
-
encoding:
|
631
|
-
string:
|
632
|
-
"
|
633
|
-
|
634
|
-
"
|
635
|
-
|
636
|
-
|
637
|
-
"
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
671
|
+
- req-f5b4e2fd-52a5-49fb-b81d-ca9049e6c860
|
668
672
|
X-Openstack-Request-Id:
|
669
|
-
- req-
|
673
|
+
- req-f5b4e2fd-52a5-49fb-b81d-ca9049e6c860
|
670
674
|
Date:
|
671
|
-
-
|
675
|
+
- Thu, 22 Oct 2015 14:05:08 GMT
|
672
676
|
body:
|
673
|
-
encoding:
|
674
|
-
string:
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
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-
|
709
|
+
- req-6bd4054e-8277-4982-8222-9487ef2ebe71
|
708
710
|
Date:
|
709
|
-
-
|
711
|
+
- Thu, 22 Oct 2015 14:05:08 GMT
|
710
712
|
body:
|
711
|
-
encoding:
|
712
|
-
string:
|
713
|
+
encoding: UTF-8
|
714
|
+
string: '{"transfers": []}'
|
713
715
|
http_version:
|
714
|
-
recorded_at:
|
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/
|
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
|
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
|
-
-
|
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-
|
742
|
+
- req-c7385dad-c675-4793-ac53-cc8ee5400da9
|
743
743
|
X-Openstack-Request-Id:
|
744
|
-
- req-
|
744
|
+
- req-c7385dad-c675-4793-ac53-cc8ee5400da9
|
745
745
|
Date:
|
746
|
-
-
|
746
|
+
- Thu, 22 Oct 2015 14:05:08 GMT
|
747
747
|
body:
|
748
|
-
encoding:
|
749
|
-
string:
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
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-
|
780
|
+
- req-9086f86b-5f8a-42bf-be93-4cd7ffcf7405
|
783
781
|
Date:
|
784
|
-
-
|
782
|
+
- Thu, 22 Oct 2015 14:05:08 GMT
|
785
783
|
body:
|
786
|
-
encoding:
|
787
|
-
string:
|
784
|
+
encoding: UTF-8
|
785
|
+
string: '{"transfers": []}'
|
788
786
|
http_version:
|
789
|
-
recorded_at:
|
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/
|
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
|
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
|
-
-
|
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-
|
809
|
+
- req-b3745e60-1bde-4928-91a5-5e2696943e0d
|
814
810
|
Content-Type:
|
815
811
|
- application/json
|
816
812
|
Content-Length:
|
817
|
-
- '
|
813
|
+
- '937'
|
818
814
|
X-Openstack-Request-Id:
|
819
|
-
- req-
|
815
|
+
- req-b3745e60-1bde-4928-91a5-5e2696943e0d
|
820
816
|
Date:
|
821
|
-
-
|
817
|
+
- Thu, 22 Oct 2015 14:05:09 GMT
|
822
818
|
body:
|
823
|
-
encoding:
|
824
|
-
string:
|
825
|
-
"
|
826
|
-
|
827
|
-
"
|
828
|
-
|
829
|
-
|
830
|
-
"
|
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:
|
830
|
+
recorded_at: Thu, 22 Oct 2015 14:04:50 GMT
|
833
831
|
- request:
|
834
|
-
method:
|
835
|
-
uri: http://devstack.openstack.stack:8776/
|
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
|
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
|
-
-
|
845
|
+
- 47202dc4614f42dbbd75671dff886838
|
850
846
|
response:
|
851
847
|
status:
|
852
|
-
code:
|
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
|
-
-
|
854
|
+
- application/json
|
857
855
|
Content-Length:
|
858
|
-
- '
|
856
|
+
- '937'
|
859
857
|
X-Openstack-Request-Id:
|
860
|
-
- req-
|
858
|
+
- req-0a268ab4-2b75-4ec2-b8d1-5d8ba286a491
|
861
859
|
Date:
|
862
|
-
-
|
860
|
+
- Thu, 22 Oct 2015 14:05:09 GMT
|
863
861
|
body:
|
864
|
-
encoding:
|
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:
|
873
|
+
recorded_at: Thu, 22 Oct 2015 14:04:50 GMT
|
868
874
|
- request:
|
869
|
-
method:
|
870
|
-
uri: http://devstack.openstack.stack:8776/
|
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
|
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
|
-
-
|
888
|
+
- 47202dc4614f42dbbd75671dff886838
|
885
889
|
response:
|
886
890
|
status:
|
887
|
-
code:
|
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
|
-
-
|
895
|
+
- text/html; charset=UTF-8
|
894
896
|
Content-Length:
|
895
|
-
- '
|
897
|
+
- '0'
|
896
898
|
X-Openstack-Request-Id:
|
897
|
-
- req-
|
899
|
+
- req-a013cc08-4bf3-45a3-ae28-6ad8e77a74ee
|
898
900
|
Date:
|
899
|
-
-
|
901
|
+
- Thu, 22 Oct 2015 14:05:09 GMT
|
900
902
|
body:
|
901
|
-
encoding:
|
902
|
-
string:
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
928
|
+
- req-8f0fd890-101d-4db9-a83a-b66070f5615d
|
935
929
|
Content-Type:
|
936
930
|
- application/json
|
937
931
|
Content-Length:
|
938
|
-
- '
|
932
|
+
- '936'
|
939
933
|
X-Openstack-Request-Id:
|
940
|
-
- req-
|
934
|
+
- req-8f0fd890-101d-4db9-a83a-b66070f5615d
|
941
935
|
Date:
|
942
|
-
-
|
936
|
+
- Thu, 22 Oct 2015 14:05:09 GMT
|
943
937
|
body:
|
944
|
-
encoding:
|
945
|
-
string:
|
946
|
-
"
|
947
|
-
|
948
|
-
"
|
949
|
-
|
950
|
-
|
951
|
-
"
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
971
|
+
- req-5c02eca8-e6ac-4033-8f8a-df4475fce47e
|
978
972
|
Content-Type:
|
979
973
|
- application/json
|
980
974
|
Content-Length:
|
981
|
-
- '
|
975
|
+
- '936'
|
982
976
|
X-Openstack-Request-Id:
|
983
|
-
- req-
|
977
|
+
- req-5c02eca8-e6ac-4033-8f8a-df4475fce47e
|
984
978
|
Date:
|
985
|
-
-
|
979
|
+
- Thu, 22 Oct 2015 14:05:11 GMT
|
986
980
|
body:
|
987
|
-
encoding:
|
988
|
-
string:
|
989
|
-
"
|
990
|
-
|
991
|
-
"
|
992
|
-
|
993
|
-
|
994
|
-
"
|
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:
|
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/
|
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
|
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
|
-
-
|
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-
|
1014
|
+
- req-601e93da-72ee-4e8f-ad1f-d3e42d21cdb0
|
1021
1015
|
Content-Type:
|
1022
1016
|
- application/json
|
1023
1017
|
Content-Length:
|
1024
|
-
- '
|
1018
|
+
- '936'
|
1025
1019
|
X-Openstack-Request-Id:
|
1026
|
-
- req-
|
1020
|
+
- req-601e93da-72ee-4e8f-ad1f-d3e42d21cdb0
|
1027
1021
|
Date:
|
1028
|
-
-
|
1022
|
+
- Thu, 22 Oct 2015 14:05:14 GMT
|
1029
1023
|
body:
|
1030
|
-
encoding:
|
1031
|
-
string:
|
1032
|
-
"
|
1033
|
-
|
1034
|
-
"
|
1035
|
-
|
1036
|
-
|
1037
|
-
"
|
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:
|
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/
|
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
|
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
|
-
-
|
1050
|
+
- 47202dc4614f42dbbd75671dff886838
|
1057
1051
|
response:
|
1058
1052
|
status:
|
1059
1053
|
code: 404
|
1060
1054
|
message: ''
|
1061
1055
|
headers:
|
1062
1056
|
Content-Length:
|
1063
|
-
- '
|
1057
|
+
- '109'
|
1064
1058
|
Content-Type:
|
1065
1059
|
- application/json; charset=UTF-8
|
1066
1060
|
X-Compute-Request-Id:
|
1067
|
-
- req-
|
1061
|
+
- req-d494bc42-f643-423c-8830-6a4943ed411d
|
1068
1062
|
X-Openstack-Request-Id:
|
1069
|
-
- req-
|
1063
|
+
- req-d494bc42-f643-423c-8830-6a4943ed411d
|
1070
1064
|
Date:
|
1071
|
-
-
|
1065
|
+
- Thu, 22 Oct 2015 14:05:18 GMT
|
1072
1066
|
body:
|
1073
|
-
encoding:
|
1074
|
-
string:
|
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:
|
1071
|
+
recorded_at: Thu, 22 Oct 2015 14:04:59 GMT
|
1078
1072
|
recorded_with: VCR 2.9.3
|