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
@@ -0,0 +1,1072 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/detail?name=fog-testvolume-1
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- fog-core/1.32.1
|
12
|
+
Content-Type:
|
13
|
+
- application/json
|
14
|
+
Accept:
|
15
|
+
- application/json
|
16
|
+
X-Auth-Token:
|
17
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: ''
|
22
|
+
headers:
|
23
|
+
X-Compute-Request-Id:
|
24
|
+
- req-6f09a80d-d1be-4c5c-9354-a314a843c1ae
|
25
|
+
Content-Type:
|
26
|
+
- application/json
|
27
|
+
Content-Length:
|
28
|
+
- '15'
|
29
|
+
X-Openstack-Request-Id:
|
30
|
+
- req-6f09a80d-d1be-4c5c-9354-a314a843c1ae
|
31
|
+
Date:
|
32
|
+
- Thu, 22 Oct 2015 14:08:02 GMT
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: '{"volumes": []}'
|
36
|
+
http_version:
|
37
|
+
recorded_at: Thu, 22 Oct 2015 14:07:43 GMT
|
38
|
+
- request:
|
39
|
+
method: post
|
40
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"volume":{"name":"fog-testvolume-1","description":null,"size":1}}'
|
44
|
+
headers:
|
45
|
+
User-Agent:
|
46
|
+
- fog-core/1.32.1
|
47
|
+
Content-Type:
|
48
|
+
- application/json
|
49
|
+
Accept:
|
50
|
+
- application/json
|
51
|
+
X-Auth-Token:
|
52
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
53
|
+
response:
|
54
|
+
status:
|
55
|
+
code: 202
|
56
|
+
message: ''
|
57
|
+
headers:
|
58
|
+
X-Compute-Request-Id:
|
59
|
+
- req-640c6a90-806c-49b5-8c9c-1d09db0f7292
|
60
|
+
Content-Type:
|
61
|
+
- application/json
|
62
|
+
Content-Length:
|
63
|
+
- '778'
|
64
|
+
X-Openstack-Request-Id:
|
65
|
+
- req-640c6a90-806c-49b5-8c9c-1d09db0f7292
|
66
|
+
Date:
|
67
|
+
- Thu, 22 Oct 2015 14:08:02 GMT
|
68
|
+
body:
|
69
|
+
encoding: UTF-8
|
70
|
+
string: '{"volume": {"status": "creating", "user_id": "9587da3bfe944085b1b2ff99ef04b59d",
|
71
|
+
"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
72
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
73
|
+
"rel": "bookmark"}], "availability_zone": "nova", "bootable": "false", "encrypted":
|
74
|
+
false, "created_at": "2015-10-22T14:08:02.680693", "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": "199f5d32-9d33-4809-aef2-6c047a8d5a2c", "size":
|
78
|
+
1}}'
|
79
|
+
http_version:
|
80
|
+
recorded_at: Thu, 22 Oct 2015 14:07:43 GMT
|
81
|
+
- request:
|
82
|
+
method: get
|
83
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
84
|
+
body:
|
85
|
+
encoding: US-ASCII
|
86
|
+
string: ''
|
87
|
+
headers:
|
88
|
+
User-Agent:
|
89
|
+
- fog-core/1.32.1
|
90
|
+
Content-Type:
|
91
|
+
- application/json
|
92
|
+
Accept:
|
93
|
+
- application/json
|
94
|
+
X-Auth-Token:
|
95
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
96
|
+
response:
|
97
|
+
status:
|
98
|
+
code: 200
|
99
|
+
message: ''
|
100
|
+
headers:
|
101
|
+
X-Compute-Request-Id:
|
102
|
+
- req-b2d55a50-b148-4fa0-a18c-7f1a064c9135
|
103
|
+
Content-Type:
|
104
|
+
- application/json
|
105
|
+
Content-Length:
|
106
|
+
- '1078'
|
107
|
+
X-Openstack-Request-Id:
|
108
|
+
- req-b2d55a50-b148-4fa0-a18c-7f1a064c9135
|
109
|
+
Date:
|
110
|
+
- Thu, 22 Oct 2015 14:08:03 GMT
|
111
|
+
body:
|
112
|
+
encoding: UTF-8
|
113
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
114
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
115
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
116
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
117
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000", "volume_type":
|
124
|
+
"lvmdriver-1"}}'
|
125
|
+
http_version:
|
126
|
+
recorded_at: Thu, 22 Oct 2015 14:07:44 GMT
|
127
|
+
- request:
|
128
|
+
method: get
|
129
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
130
|
+
body:
|
131
|
+
encoding: US-ASCII
|
132
|
+
string: ''
|
133
|
+
headers:
|
134
|
+
User-Agent:
|
135
|
+
- fog-core/1.32.1
|
136
|
+
Content-Type:
|
137
|
+
- application/json
|
138
|
+
Accept:
|
139
|
+
- application/json
|
140
|
+
X-Auth-Token:
|
141
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
142
|
+
response:
|
143
|
+
status:
|
144
|
+
code: 200
|
145
|
+
message: ''
|
146
|
+
headers:
|
147
|
+
X-Compute-Request-Id:
|
148
|
+
- req-0cfa06e7-d426-471c-8e6a-e59a06c215cf
|
149
|
+
Content-Type:
|
150
|
+
- application/json
|
151
|
+
Content-Length:
|
152
|
+
- '1079'
|
153
|
+
X-Openstack-Request-Id:
|
154
|
+
- req-0cfa06e7-d426-471c-8e6a-e59a06c215cf
|
155
|
+
Date:
|
156
|
+
- Thu, 22 Oct 2015 14:08:04 GMT
|
157
|
+
body:
|
158
|
+
encoding: UTF-8
|
159
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
160
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000", "volume_type":
|
170
|
+
"lvmdriver-1"}}'
|
171
|
+
http_version:
|
172
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
173
|
+
- request:
|
174
|
+
method: get
|
175
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/detail?name=fog-testtransfer-1
|
176
|
+
body:
|
177
|
+
encoding: US-ASCII
|
178
|
+
string: ''
|
179
|
+
headers:
|
180
|
+
User-Agent:
|
181
|
+
- fog-core/1.32.1
|
182
|
+
Content-Type:
|
183
|
+
- application/json
|
184
|
+
Accept:
|
185
|
+
- application/json
|
186
|
+
X-Auth-Token:
|
187
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
188
|
+
response:
|
189
|
+
status:
|
190
|
+
code: 200
|
191
|
+
message: ''
|
192
|
+
headers:
|
193
|
+
X-Compute-Request-Id:
|
194
|
+
- req-e952b420-34a5-4d5c-b138-559ee8b31596
|
195
|
+
Content-Type:
|
196
|
+
- application/json
|
197
|
+
Content-Length:
|
198
|
+
- '17'
|
199
|
+
X-Openstack-Request-Id:
|
200
|
+
- req-e952b420-34a5-4d5c-b138-559ee8b31596
|
201
|
+
Date:
|
202
|
+
- Thu, 22 Oct 2015 14:08:04 GMT
|
203
|
+
body:
|
204
|
+
encoding: UTF-8
|
205
|
+
string: '{"transfers": []}'
|
206
|
+
http_version:
|
207
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
208
|
+
- request:
|
209
|
+
method: post
|
210
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer
|
211
|
+
body:
|
212
|
+
encoding: UTF-8
|
213
|
+
string: '{"transfer":{"volume_id":"199f5d32-9d33-4809-aef2-6c047a8d5a2c","name":"fog-testtransfer-1"}}'
|
214
|
+
headers:
|
215
|
+
User-Agent:
|
216
|
+
- fog-core/1.32.1
|
217
|
+
Content-Type:
|
218
|
+
- application/json
|
219
|
+
Accept:
|
220
|
+
- application/json
|
221
|
+
X-Auth-Token:
|
222
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
223
|
+
response:
|
224
|
+
status:
|
225
|
+
code: 202
|
226
|
+
message: ''
|
227
|
+
headers:
|
228
|
+
X-Compute-Request-Id:
|
229
|
+
- req-2dd13653-13e7-4296-88ed-bb55d844f9bd
|
230
|
+
Content-Type:
|
231
|
+
- application/json
|
232
|
+
Content-Length:
|
233
|
+
- '525'
|
234
|
+
X-Openstack-Request-Id:
|
235
|
+
- req-2dd13653-13e7-4296-88ed-bb55d844f9bd
|
236
|
+
Date:
|
237
|
+
- Thu, 22 Oct 2015 14:08:04 GMT
|
238
|
+
body:
|
239
|
+
encoding: UTF-8
|
240
|
+
string: '{"transfer": {"auth_key": "3b753577654c1ca2", "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
241
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
242
|
+
"rel": "bookmark"}], "created_at": "2015-10-22T14:08:04.616543", "volume_id":
|
243
|
+
"199f5d32-9d33-4809-aef2-6c047a8d5a2c", "id": "50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
244
|
+
"name": "fog-testtransfer-1"}}'
|
245
|
+
http_version:
|
246
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
247
|
+
- request:
|
248
|
+
method: get
|
249
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
250
|
+
body:
|
251
|
+
encoding: US-ASCII
|
252
|
+
string: ''
|
253
|
+
headers:
|
254
|
+
User-Agent:
|
255
|
+
- fog-core/1.32.1
|
256
|
+
Content-Type:
|
257
|
+
- application/json
|
258
|
+
Accept:
|
259
|
+
- application/json
|
260
|
+
X-Auth-Token:
|
261
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
262
|
+
response:
|
263
|
+
status:
|
264
|
+
code: 200
|
265
|
+
message: ''
|
266
|
+
headers:
|
267
|
+
X-Compute-Request-Id:
|
268
|
+
- req-2a5cc0c4-0412-4180-961d-7fb687f0067a
|
269
|
+
Content-Type:
|
270
|
+
- application/json
|
271
|
+
Content-Length:
|
272
|
+
- '493'
|
273
|
+
X-Openstack-Request-Id:
|
274
|
+
- req-2a5cc0c4-0412-4180-961d-7fb687f0067a
|
275
|
+
Date:
|
276
|
+
- Thu, 22 Oct 2015 14:08:04 GMT
|
277
|
+
body:
|
278
|
+
encoding: UTF-8
|
279
|
+
string: '{"transfer": {"created_at": "2015-10-22T14:08:04.000000", "volume_id":
|
280
|
+
"199f5d32-9d33-4809-aef2-6c047a8d5a2c", "id": "50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
281
|
+
"links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
282
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
283
|
+
"rel": "bookmark"}], "name": "fog-testtransfer-1"}}'
|
284
|
+
http_version:
|
285
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
286
|
+
- request:
|
287
|
+
method: get
|
288
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/detail?name=fog-testtransfer-1
|
289
|
+
body:
|
290
|
+
encoding: US-ASCII
|
291
|
+
string: ''
|
292
|
+
headers:
|
293
|
+
User-Agent:
|
294
|
+
- fog-core/1.32.1
|
295
|
+
Content-Type:
|
296
|
+
- application/json
|
297
|
+
Accept:
|
298
|
+
- application/json
|
299
|
+
X-Auth-Token:
|
300
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
301
|
+
response:
|
302
|
+
status:
|
303
|
+
code: 200
|
304
|
+
message: ''
|
305
|
+
headers:
|
306
|
+
X-Compute-Request-Id:
|
307
|
+
- req-d021e646-6760-4d8b-9cc3-b321aa95445d
|
308
|
+
Content-Type:
|
309
|
+
- application/json
|
310
|
+
Content-Length:
|
311
|
+
- '496'
|
312
|
+
X-Openstack-Request-Id:
|
313
|
+
- req-d021e646-6760-4d8b-9cc3-b321aa95445d
|
314
|
+
Date:
|
315
|
+
- Thu, 22 Oct 2015 14:08:04 GMT
|
316
|
+
body:
|
317
|
+
encoding: UTF-8
|
318
|
+
string: '{"transfers": [{"created_at": "2015-10-22T14:08:04.000000", "volume_id":
|
319
|
+
"199f5d32-9d33-4809-aef2-6c047a8d5a2c", "id": "50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
320
|
+
"links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
321
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
322
|
+
"rel": "bookmark"}], "name": "fog-testtransfer-1"}]}'
|
323
|
+
http_version:
|
324
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
325
|
+
- request:
|
326
|
+
method: post
|
327
|
+
uri: http://devstack.openstack.stack:5000/v3/auth/tokens
|
328
|
+
body:
|
329
|
+
encoding: UTF-8
|
330
|
+
string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"password":"password","domain":{"name":"Default"},"name":"demo"}}},"scope":{"project":{"name":"demo","domain":{"name":"Default"}}}}}'
|
331
|
+
headers:
|
332
|
+
User-Agent:
|
333
|
+
- fog-core/1.32.1
|
334
|
+
Content-Type:
|
335
|
+
- application/json
|
336
|
+
response:
|
337
|
+
status:
|
338
|
+
code: 201
|
339
|
+
message: ''
|
340
|
+
headers:
|
341
|
+
Date:
|
342
|
+
- Thu, 22 Oct 2015 14:08:04 GMT
|
343
|
+
Server:
|
344
|
+
- Apache/2.4.7 (Ubuntu)
|
345
|
+
X-Subject-Token:
|
346
|
+
- 8779fae30a714f028f9a812725997fd8
|
347
|
+
Vary:
|
348
|
+
- X-Auth-Token
|
349
|
+
X-Openstack-Request-Id:
|
350
|
+
- req-dceae495-8275-4f66-8dee-5a0edf4f229a
|
351
|
+
Content-Length:
|
352
|
+
- '5488'
|
353
|
+
Content-Type:
|
354
|
+
- application/json
|
355
|
+
body:
|
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:08:04.915158Z", "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": ["JxtxzEFlSviYmU4Gz4JC_g"],
|
419
|
+
"issued_at": "2015-10-22T14:08:04.915199Z"}}'
|
420
|
+
http_version:
|
421
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
422
|
+
- request:
|
423
|
+
method: get
|
424
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
425
|
+
body:
|
426
|
+
encoding: US-ASCII
|
427
|
+
string: ''
|
428
|
+
headers:
|
429
|
+
User-Agent:
|
430
|
+
- fog-core/1.32.1
|
431
|
+
Content-Type:
|
432
|
+
- application/json
|
433
|
+
Accept:
|
434
|
+
- application/json
|
435
|
+
X-Auth-Token:
|
436
|
+
- 8779fae30a714f028f9a812725997fd8
|
437
|
+
response:
|
438
|
+
status:
|
439
|
+
code: 404
|
440
|
+
message: ''
|
441
|
+
headers:
|
442
|
+
Content-Length:
|
443
|
+
- '111'
|
444
|
+
Content-Type:
|
445
|
+
- application/json; charset=UTF-8
|
446
|
+
X-Compute-Request-Id:
|
447
|
+
- req-f12777bf-e081-4a92-b2e9-4cad8b1d3022
|
448
|
+
X-Openstack-Request-Id:
|
449
|
+
- req-f12777bf-e081-4a92-b2e9-4cad8b1d3022
|
450
|
+
Date:
|
451
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
452
|
+
body:
|
453
|
+
encoding: UTF-8
|
454
|
+
string: '{"itemNotFound": {"message": "Transfer 50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
455
|
+
could not be found.", "code": 404}}'
|
456
|
+
http_version:
|
457
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
458
|
+
- request:
|
459
|
+
method: get
|
460
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/detail?name=fog-testtransfer-1
|
461
|
+
body:
|
462
|
+
encoding: US-ASCII
|
463
|
+
string: ''
|
464
|
+
headers:
|
465
|
+
User-Agent:
|
466
|
+
- fog-core/1.32.1
|
467
|
+
Content-Type:
|
468
|
+
- application/json
|
469
|
+
Accept:
|
470
|
+
- application/json
|
471
|
+
X-Auth-Token:
|
472
|
+
- 8779fae30a714f028f9a812725997fd8
|
473
|
+
response:
|
474
|
+
status:
|
475
|
+
code: 200
|
476
|
+
message: ''
|
477
|
+
headers:
|
478
|
+
X-Compute-Request-Id:
|
479
|
+
- req-ae3cfb57-7cfc-4ccd-91a0-356db41516ba
|
480
|
+
Content-Type:
|
481
|
+
- application/json
|
482
|
+
Content-Length:
|
483
|
+
- '17'
|
484
|
+
X-Openstack-Request-Id:
|
485
|
+
- req-ae3cfb57-7cfc-4ccd-91a0-356db41516ba
|
486
|
+
Date:
|
487
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
488
|
+
body:
|
489
|
+
encoding: UTF-8
|
490
|
+
string: '{"transfers": []}'
|
491
|
+
http_version:
|
492
|
+
recorded_at: Thu, 22 Oct 2015 14:07:45 GMT
|
493
|
+
- request:
|
494
|
+
method: post
|
495
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/ec8ff7e8-81e2-4e12-b9fb-3e8890612c2d/accept
|
496
|
+
body:
|
497
|
+
encoding: UTF-8
|
498
|
+
string: '{"accept":{"auth_key":"3b753577654c1ca2"}}'
|
499
|
+
headers:
|
500
|
+
User-Agent:
|
501
|
+
- fog-core/1.32.1
|
502
|
+
Content-Type:
|
503
|
+
- application/json
|
504
|
+
Accept:
|
505
|
+
- application/json
|
506
|
+
X-Auth-Token:
|
507
|
+
- 8779fae30a714f028f9a812725997fd8
|
508
|
+
response:
|
509
|
+
status:
|
510
|
+
code: 404
|
511
|
+
message: ''
|
512
|
+
headers:
|
513
|
+
Content-Length:
|
514
|
+
- '129'
|
515
|
+
Content-Type:
|
516
|
+
- application/json; charset=UTF-8
|
517
|
+
X-Compute-Request-Id:
|
518
|
+
- req-5113be13-56d6-42da-9ea3-eea588f3f03b
|
519
|
+
X-Openstack-Request-Id:
|
520
|
+
- req-5113be13-56d6-42da-9ea3-eea588f3f03b
|
521
|
+
Date:
|
522
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
523
|
+
body:
|
524
|
+
encoding: UTF-8
|
525
|
+
string: '{"itemNotFound": {"message": "TransferNotFound: Transfer ec8ff7e8-81e2-4e12-b9fb-3e8890612c2d
|
526
|
+
could not be found.", "code": 404}}'
|
527
|
+
http_version:
|
528
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
529
|
+
- request:
|
530
|
+
method: post
|
531
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8/accept
|
532
|
+
body:
|
533
|
+
encoding: UTF-8
|
534
|
+
string: '{"accept":{"auth_key":"invalidauthkey"}}'
|
535
|
+
headers:
|
536
|
+
User-Agent:
|
537
|
+
- fog-core/1.32.1
|
538
|
+
Content-Type:
|
539
|
+
- application/json
|
540
|
+
Accept:
|
541
|
+
- application/json
|
542
|
+
X-Auth-Token:
|
543
|
+
- 8779fae30a714f028f9a812725997fd8
|
544
|
+
response:
|
545
|
+
status:
|
546
|
+
code: 400
|
547
|
+
message: ''
|
548
|
+
headers:
|
549
|
+
Content-Length:
|
550
|
+
- '141'
|
551
|
+
Content-Type:
|
552
|
+
- application/json; charset=UTF-8
|
553
|
+
X-Compute-Request-Id:
|
554
|
+
- req-b6f27a13-0e39-44e7-b6a4-b065b8a66372
|
555
|
+
X-Openstack-Request-Id:
|
556
|
+
- req-b6f27a13-0e39-44e7-b6a4-b065b8a66372
|
557
|
+
Date:
|
558
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
559
|
+
body:
|
560
|
+
encoding: UTF-8
|
561
|
+
string: '{"badRequest": {"message": "Invalid auth key: Attempt to transfer 50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
562
|
+
with invalid auth key.", "code": 400}}'
|
563
|
+
http_version:
|
564
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
565
|
+
- request:
|
566
|
+
method: post
|
567
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8/accept
|
568
|
+
body:
|
569
|
+
encoding: UTF-8
|
570
|
+
string: '{"accept":{"auth_key":"3b753577654c1ca2"}}'
|
571
|
+
headers:
|
572
|
+
User-Agent:
|
573
|
+
- fog-core/1.32.1
|
574
|
+
Content-Type:
|
575
|
+
- application/json
|
576
|
+
Accept:
|
577
|
+
- application/json
|
578
|
+
X-Auth-Token:
|
579
|
+
- 8779fae30a714f028f9a812725997fd8
|
580
|
+
response:
|
581
|
+
status:
|
582
|
+
code: 202
|
583
|
+
message: ''
|
584
|
+
headers:
|
585
|
+
X-Compute-Request-Id:
|
586
|
+
- req-b701acf2-a73e-4d8a-8f04-bc2b5c219a97
|
587
|
+
Content-Type:
|
588
|
+
- application/json
|
589
|
+
Content-Length:
|
590
|
+
- '449'
|
591
|
+
X-Openstack-Request-Id:
|
592
|
+
- req-b701acf2-a73e-4d8a-8f04-bc2b5c219a97
|
593
|
+
Date:
|
594
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
595
|
+
body:
|
596
|
+
encoding: UTF-8
|
597
|
+
string: '{"transfer": {"links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
598
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8",
|
599
|
+
"rel": "bookmark"}], "id": "50e6598e-dfd1-4ff7-918e-01323a9cf9f8", "name":
|
600
|
+
"fog-testtransfer-1", "volume_id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c"}}'
|
601
|
+
http_version:
|
602
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
603
|
+
- request:
|
604
|
+
method: get
|
605
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
606
|
+
body:
|
607
|
+
encoding: US-ASCII
|
608
|
+
string: ''
|
609
|
+
headers:
|
610
|
+
User-Agent:
|
611
|
+
- fog-core/1.32.1
|
612
|
+
Content-Type:
|
613
|
+
- application/json
|
614
|
+
Accept:
|
615
|
+
- application/json
|
616
|
+
X-Auth-Token:
|
617
|
+
- 8779fae30a714f028f9a812725997fd8
|
618
|
+
response:
|
619
|
+
status:
|
620
|
+
code: 200
|
621
|
+
message: ''
|
622
|
+
headers:
|
623
|
+
X-Compute-Request-Id:
|
624
|
+
- req-55cf856c-5ab9-4e8a-a6dd-3e685a111f95
|
625
|
+
Content-Type:
|
626
|
+
- application/json
|
627
|
+
Content-Length:
|
628
|
+
- '937'
|
629
|
+
X-Openstack-Request-Id:
|
630
|
+
- req-55cf856c-5ab9-4e8a-a6dd-3e685a111f95
|
631
|
+
Date:
|
632
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
633
|
+
body:
|
634
|
+
encoding: UTF-8
|
635
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
636
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
637
|
+
"rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
|
638
|
+
null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000",
|
643
|
+
"os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
|
644
|
+
http_version:
|
645
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
646
|
+
- request:
|
647
|
+
method: get
|
648
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
649
|
+
body:
|
650
|
+
encoding: US-ASCII
|
651
|
+
string: ''
|
652
|
+
headers:
|
653
|
+
User-Agent:
|
654
|
+
- fog-core/1.32.1
|
655
|
+
Content-Type:
|
656
|
+
- application/json
|
657
|
+
Accept:
|
658
|
+
- application/json
|
659
|
+
X-Auth-Token:
|
660
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
661
|
+
response:
|
662
|
+
status:
|
663
|
+
code: 404
|
664
|
+
message: ''
|
665
|
+
headers:
|
666
|
+
Content-Length:
|
667
|
+
- '111'
|
668
|
+
Content-Type:
|
669
|
+
- application/json; charset=UTF-8
|
670
|
+
X-Compute-Request-Id:
|
671
|
+
- req-e8ed788c-e0e9-468d-81fa-ea37873cfa7a
|
672
|
+
X-Openstack-Request-Id:
|
673
|
+
- req-e8ed788c-e0e9-468d-81fa-ea37873cfa7a
|
674
|
+
Date:
|
675
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
676
|
+
body:
|
677
|
+
encoding: UTF-8
|
678
|
+
string: '{"itemNotFound": {"message": "Transfer 50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
679
|
+
could not be found.", "code": 404}}'
|
680
|
+
http_version:
|
681
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
682
|
+
- request:
|
683
|
+
method: get
|
684
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/os-volume-transfer/detail?name=fog-testtransfer-1
|
685
|
+
body:
|
686
|
+
encoding: US-ASCII
|
687
|
+
string: ''
|
688
|
+
headers:
|
689
|
+
User-Agent:
|
690
|
+
- fog-core/1.32.1
|
691
|
+
Content-Type:
|
692
|
+
- application/json
|
693
|
+
Accept:
|
694
|
+
- application/json
|
695
|
+
X-Auth-Token:
|
696
|
+
- 3f33d39bc21c47268423f7eb134b78f4
|
697
|
+
response:
|
698
|
+
status:
|
699
|
+
code: 200
|
700
|
+
message: ''
|
701
|
+
headers:
|
702
|
+
X-Compute-Request-Id:
|
703
|
+
- req-24e2bfb7-c5b3-4b9c-a8e6-0b1cb79dc468
|
704
|
+
Content-Type:
|
705
|
+
- application/json
|
706
|
+
Content-Length:
|
707
|
+
- '17'
|
708
|
+
X-Openstack-Request-Id:
|
709
|
+
- req-24e2bfb7-c5b3-4b9c-a8e6-0b1cb79dc468
|
710
|
+
Date:
|
711
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
712
|
+
body:
|
713
|
+
encoding: UTF-8
|
714
|
+
string: '{"transfers": []}'
|
715
|
+
http_version:
|
716
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
717
|
+
- request:
|
718
|
+
method: get
|
719
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
720
|
+
body:
|
721
|
+
encoding: US-ASCII
|
722
|
+
string: ''
|
723
|
+
headers:
|
724
|
+
User-Agent:
|
725
|
+
- fog-core/1.32.1
|
726
|
+
Content-Type:
|
727
|
+
- application/json
|
728
|
+
Accept:
|
729
|
+
- application/json
|
730
|
+
X-Auth-Token:
|
731
|
+
- 8779fae30a714f028f9a812725997fd8
|
732
|
+
response:
|
733
|
+
status:
|
734
|
+
code: 404
|
735
|
+
message: ''
|
736
|
+
headers:
|
737
|
+
Content-Length:
|
738
|
+
- '111'
|
739
|
+
Content-Type:
|
740
|
+
- application/json; charset=UTF-8
|
741
|
+
X-Compute-Request-Id:
|
742
|
+
- req-0f15ee27-284c-42c2-9f57-1e810a2ee9d2
|
743
|
+
X-Openstack-Request-Id:
|
744
|
+
- req-0f15ee27-284c-42c2-9f57-1e810a2ee9d2
|
745
|
+
Date:
|
746
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
747
|
+
body:
|
748
|
+
encoding: UTF-8
|
749
|
+
string: '{"itemNotFound": {"message": "Transfer 50e6598e-dfd1-4ff7-918e-01323a9cf9f8
|
750
|
+
could not be found.", "code": 404}}'
|
751
|
+
http_version:
|
752
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
753
|
+
- request:
|
754
|
+
method: get
|
755
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/os-volume-transfer/detail?name=fog-testtransfer-1
|
756
|
+
body:
|
757
|
+
encoding: US-ASCII
|
758
|
+
string: ''
|
759
|
+
headers:
|
760
|
+
User-Agent:
|
761
|
+
- fog-core/1.32.1
|
762
|
+
Content-Type:
|
763
|
+
- application/json
|
764
|
+
Accept:
|
765
|
+
- application/json
|
766
|
+
X-Auth-Token:
|
767
|
+
- 8779fae30a714f028f9a812725997fd8
|
768
|
+
response:
|
769
|
+
status:
|
770
|
+
code: 200
|
771
|
+
message: ''
|
772
|
+
headers:
|
773
|
+
X-Compute-Request-Id:
|
774
|
+
- req-0ee33856-c4f7-4c0b-b66e-cd25d02031f2
|
775
|
+
Content-Type:
|
776
|
+
- application/json
|
777
|
+
Content-Length:
|
778
|
+
- '17'
|
779
|
+
X-Openstack-Request-Id:
|
780
|
+
- req-0ee33856-c4f7-4c0b-b66e-cd25d02031f2
|
781
|
+
Date:
|
782
|
+
- Thu, 22 Oct 2015 14:08:05 GMT
|
783
|
+
body:
|
784
|
+
encoding: UTF-8
|
785
|
+
string: '{"transfers": []}'
|
786
|
+
http_version:
|
787
|
+
recorded_at: Thu, 22 Oct 2015 14:07:46 GMT
|
788
|
+
- request:
|
789
|
+
method: get
|
790
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
791
|
+
body:
|
792
|
+
encoding: US-ASCII
|
793
|
+
string: ''
|
794
|
+
headers:
|
795
|
+
User-Agent:
|
796
|
+
- fog-core/1.32.1
|
797
|
+
Content-Type:
|
798
|
+
- application/json
|
799
|
+
Accept:
|
800
|
+
- application/json
|
801
|
+
X-Auth-Token:
|
802
|
+
- 8779fae30a714f028f9a812725997fd8
|
803
|
+
response:
|
804
|
+
status:
|
805
|
+
code: 200
|
806
|
+
message: ''
|
807
|
+
headers:
|
808
|
+
X-Compute-Request-Id:
|
809
|
+
- req-b1fa141a-03e5-4a0f-bb40-55690ed87c59
|
810
|
+
Content-Type:
|
811
|
+
- application/json
|
812
|
+
Content-Length:
|
813
|
+
- '937'
|
814
|
+
X-Openstack-Request-Id:
|
815
|
+
- req-b1fa141a-03e5-4a0f-bb40-55690ed87c59
|
816
|
+
Date:
|
817
|
+
- Thu, 22 Oct 2015 14:08:06 GMT
|
818
|
+
body:
|
819
|
+
encoding: UTF-8
|
820
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
821
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
822
|
+
"rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
|
823
|
+
null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000",
|
828
|
+
"os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
|
829
|
+
http_version:
|
830
|
+
recorded_at: Thu, 22 Oct 2015 14:07:47 GMT
|
831
|
+
- request:
|
832
|
+
method: get
|
833
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
834
|
+
body:
|
835
|
+
encoding: US-ASCII
|
836
|
+
string: ''
|
837
|
+
headers:
|
838
|
+
User-Agent:
|
839
|
+
- fog-core/1.32.1
|
840
|
+
Content-Type:
|
841
|
+
- application/json
|
842
|
+
Accept:
|
843
|
+
- application/json
|
844
|
+
X-Auth-Token:
|
845
|
+
- 8779fae30a714f028f9a812725997fd8
|
846
|
+
response:
|
847
|
+
status:
|
848
|
+
code: 200
|
849
|
+
message: ''
|
850
|
+
headers:
|
851
|
+
X-Compute-Request-Id:
|
852
|
+
- req-631cce1f-eefd-4c05-974f-ceaca1b802d2
|
853
|
+
Content-Type:
|
854
|
+
- application/json
|
855
|
+
Content-Length:
|
856
|
+
- '937'
|
857
|
+
X-Openstack-Request-Id:
|
858
|
+
- req-631cce1f-eefd-4c05-974f-ceaca1b802d2
|
859
|
+
Date:
|
860
|
+
- Thu, 22 Oct 2015 14:08:06 GMT
|
861
|
+
body:
|
862
|
+
encoding: UTF-8
|
863
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
864
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
865
|
+
"rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
|
866
|
+
null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000",
|
871
|
+
"os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
|
872
|
+
http_version:
|
873
|
+
recorded_at: Thu, 22 Oct 2015 14:07:47 GMT
|
874
|
+
- request:
|
875
|
+
method: delete
|
876
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
877
|
+
body:
|
878
|
+
encoding: US-ASCII
|
879
|
+
string: ''
|
880
|
+
headers:
|
881
|
+
User-Agent:
|
882
|
+
- fog-core/1.32.1
|
883
|
+
Content-Type:
|
884
|
+
- application/json
|
885
|
+
Accept:
|
886
|
+
- application/json
|
887
|
+
X-Auth-Token:
|
888
|
+
- 8779fae30a714f028f9a812725997fd8
|
889
|
+
response:
|
890
|
+
status:
|
891
|
+
code: 202
|
892
|
+
message: ''
|
893
|
+
headers:
|
894
|
+
Content-Type:
|
895
|
+
- text/html; charset=UTF-8
|
896
|
+
Content-Length:
|
897
|
+
- '0'
|
898
|
+
X-Openstack-Request-Id:
|
899
|
+
- req-615abb1a-9ddd-46c0-9a61-00f6a76559f8
|
900
|
+
Date:
|
901
|
+
- Thu, 22 Oct 2015 14:08:06 GMT
|
902
|
+
body:
|
903
|
+
encoding: UTF-8
|
904
|
+
string: ''
|
905
|
+
http_version:
|
906
|
+
recorded_at: Thu, 22 Oct 2015 14:07:47 GMT
|
907
|
+
- request:
|
908
|
+
method: get
|
909
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
910
|
+
body:
|
911
|
+
encoding: US-ASCII
|
912
|
+
string: ''
|
913
|
+
headers:
|
914
|
+
User-Agent:
|
915
|
+
- fog-core/1.32.1
|
916
|
+
Content-Type:
|
917
|
+
- application/json
|
918
|
+
Accept:
|
919
|
+
- application/json
|
920
|
+
X-Auth-Token:
|
921
|
+
- 8779fae30a714f028f9a812725997fd8
|
922
|
+
response:
|
923
|
+
status:
|
924
|
+
code: 200
|
925
|
+
message: ''
|
926
|
+
headers:
|
927
|
+
X-Compute-Request-Id:
|
928
|
+
- req-6f4e8dab-6e7d-461d-816c-f77ac3247448
|
929
|
+
Content-Type:
|
930
|
+
- application/json
|
931
|
+
Content-Length:
|
932
|
+
- '936'
|
933
|
+
X-Openstack-Request-Id:
|
934
|
+
- req-6f4e8dab-6e7d-461d-816c-f77ac3247448
|
935
|
+
Date:
|
936
|
+
- Thu, 22 Oct 2015 14:08:07 GMT
|
937
|
+
body:
|
938
|
+
encoding: UTF-8
|
939
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
940
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
941
|
+
"rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
|
942
|
+
null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000",
|
947
|
+
"os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
|
948
|
+
http_version:
|
949
|
+
recorded_at: Thu, 22 Oct 2015 14:07:48 GMT
|
950
|
+
- request:
|
951
|
+
method: get
|
952
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
953
|
+
body:
|
954
|
+
encoding: US-ASCII
|
955
|
+
string: ''
|
956
|
+
headers:
|
957
|
+
User-Agent:
|
958
|
+
- fog-core/1.32.1
|
959
|
+
Content-Type:
|
960
|
+
- application/json
|
961
|
+
Accept:
|
962
|
+
- application/json
|
963
|
+
X-Auth-Token:
|
964
|
+
- 8779fae30a714f028f9a812725997fd8
|
965
|
+
response:
|
966
|
+
status:
|
967
|
+
code: 200
|
968
|
+
message: ''
|
969
|
+
headers:
|
970
|
+
X-Compute-Request-Id:
|
971
|
+
- req-1940afe9-9176-433c-9100-3d2a352d8fe4
|
972
|
+
Content-Type:
|
973
|
+
- application/json
|
974
|
+
Content-Length:
|
975
|
+
- '936'
|
976
|
+
X-Openstack-Request-Id:
|
977
|
+
- req-1940afe9-9176-433c-9100-3d2a352d8fe4
|
978
|
+
Date:
|
979
|
+
- Thu, 22 Oct 2015 14:08:08 GMT
|
980
|
+
body:
|
981
|
+
encoding: UTF-8
|
982
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
983
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
984
|
+
"rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
|
985
|
+
null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000",
|
990
|
+
"os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
|
991
|
+
http_version:
|
992
|
+
recorded_at: Thu, 22 Oct 2015 14:07:49 GMT
|
993
|
+
- request:
|
994
|
+
method: get
|
995
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
996
|
+
body:
|
997
|
+
encoding: US-ASCII
|
998
|
+
string: ''
|
999
|
+
headers:
|
1000
|
+
User-Agent:
|
1001
|
+
- fog-core/1.32.1
|
1002
|
+
Content-Type:
|
1003
|
+
- application/json
|
1004
|
+
Accept:
|
1005
|
+
- application/json
|
1006
|
+
X-Auth-Token:
|
1007
|
+
- 8779fae30a714f028f9a812725997fd8
|
1008
|
+
response:
|
1009
|
+
status:
|
1010
|
+
code: 200
|
1011
|
+
message: ''
|
1012
|
+
headers:
|
1013
|
+
X-Compute-Request-Id:
|
1014
|
+
- req-43035fe8-33b3-4f5f-87c8-0163a29b4f5b
|
1015
|
+
Content-Type:
|
1016
|
+
- application/json
|
1017
|
+
Content-Length:
|
1018
|
+
- '936'
|
1019
|
+
X-Openstack-Request-Id:
|
1020
|
+
- req-43035fe8-33b3-4f5f-87c8-0163a29b4f5b
|
1021
|
+
Date:
|
1022
|
+
- Thu, 22 Oct 2015 14:08:11 GMT
|
1023
|
+
body:
|
1024
|
+
encoding: UTF-8
|
1025
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
1026
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
1027
|
+
"rel": "bookmark"}], "availability_zone": "nova", "encrypted": false, "os-volume-replication:extended_status":
|
1028
|
+
null, "volume_type": "lvmdriver-1", "snapshot_id": null, "id": "199f5d32-9d33-4809-aef2-6c047a8d5a2c",
|
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:08:02.000000",
|
1033
|
+
"os-volume-replication:driver_data": null, "replication_status": "disabled"}}'
|
1034
|
+
http_version:
|
1035
|
+
recorded_at: Thu, 22 Oct 2015 14:07:52 GMT
|
1036
|
+
- request:
|
1037
|
+
method: get
|
1038
|
+
uri: http://devstack.openstack.stack:8776/v2/287f46e0cc294b8cb0c276dd71b8710f/volumes/199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
1039
|
+
body:
|
1040
|
+
encoding: US-ASCII
|
1041
|
+
string: ''
|
1042
|
+
headers:
|
1043
|
+
User-Agent:
|
1044
|
+
- fog-core/1.32.1
|
1045
|
+
Content-Type:
|
1046
|
+
- application/json
|
1047
|
+
Accept:
|
1048
|
+
- application/json
|
1049
|
+
X-Auth-Token:
|
1050
|
+
- 8779fae30a714f028f9a812725997fd8
|
1051
|
+
response:
|
1052
|
+
status:
|
1053
|
+
code: 404
|
1054
|
+
message: ''
|
1055
|
+
headers:
|
1056
|
+
Content-Length:
|
1057
|
+
- '109'
|
1058
|
+
Content-Type:
|
1059
|
+
- application/json; charset=UTF-8
|
1060
|
+
X-Compute-Request-Id:
|
1061
|
+
- req-d744d206-256f-4b7e-a562-d5907aa80f91
|
1062
|
+
X-Openstack-Request-Id:
|
1063
|
+
- req-d744d206-256f-4b7e-a562-d5907aa80f91
|
1064
|
+
Date:
|
1065
|
+
- Thu, 22 Oct 2015 14:08:15 GMT
|
1066
|
+
body:
|
1067
|
+
encoding: UTF-8
|
1068
|
+
string: '{"itemNotFound": {"message": "Volume 199f5d32-9d33-4809-aef2-6c047a8d5a2c
|
1069
|
+
could not be found.", "code": 404}}'
|
1070
|
+
http_version:
|
1071
|
+
recorded_at: Thu, 22 Oct 2015 14:07:56 GMT
|
1072
|
+
recorded_with: VCR 2.9.3
|