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
@@ -31,6 +31,41 @@ module Fog
|
|
31
31
|
)
|
32
32
|
end
|
33
33
|
end
|
34
|
+
class Mock
|
35
|
+
def post_power_on_vapp(id)
|
36
|
+
unless vapp = data[:vapps][id]
|
37
|
+
raise Fog::Compute::VcloudDirector::Forbidden.new(
|
38
|
+
'This operation is denied.'
|
39
|
+
)
|
40
|
+
end
|
41
|
+
|
42
|
+
owner = {
|
43
|
+
:href => make_href("vApp/#{id}"),
|
44
|
+
:type => 'application/vnd.vmware.vcloud.vApp+xml'
|
45
|
+
}
|
46
|
+
task_id = enqueue_task(
|
47
|
+
"Starting Virtual Application #{data[:vapps][id]} vapp(#{id})", 'vappDeploy', owner,
|
48
|
+
:on_success => lambda do
|
49
|
+
data[:vms].values.each do |vm|
|
50
|
+
if vm[:parent_vapp] == id
|
51
|
+
vm[:status] = '4' # on
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
)
|
56
|
+
body = {
|
57
|
+
:xmlns => xmlns,
|
58
|
+
:xmlns_xsi => xmlns_xsi,
|
59
|
+
:xsi_schemaLocation => xsi_schema_location,
|
60
|
+
}.merge(task_body(task_id))
|
61
|
+
|
62
|
+
Excon::Response.new(
|
63
|
+
:status => 202,
|
64
|
+
:headers => {'Content-Type' => "#{body[:type]};version=#{api_version}"},
|
65
|
+
:body => body
|
66
|
+
)
|
67
|
+
end
|
68
|
+
end
|
34
69
|
end
|
35
70
|
end
|
36
71
|
end
|
@@ -0,0 +1,118 @@
|
|
1
|
+
module Fog
|
2
|
+
module Compute
|
3
|
+
class VcloudDirector
|
4
|
+
class Real
|
5
|
+
|
6
|
+
# Updates VM configuration.
|
7
|
+
#
|
8
|
+
# This operation is asynchronous and returns a task that you can
|
9
|
+
# monitor to track the progress of the request.
|
10
|
+
#
|
11
|
+
# @param [String] id Object identifier of the VM.
|
12
|
+
# @param [Hash] options
|
13
|
+
#
|
14
|
+
# @option options [String] :name Change the VM's name [required].
|
15
|
+
# @option options [String] :description VM description
|
16
|
+
# @option options [Integer] :cpu Number of CPUs
|
17
|
+
# @option options [Integer] :memory Memory in MB
|
18
|
+
#
|
19
|
+
# @return [Excon::Response]
|
20
|
+
# * body<~Hash>:
|
21
|
+
# * :Tasks<~Hash>:
|
22
|
+
# * :Task<~Hash>:
|
23
|
+
#
|
24
|
+
# @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/POST-ReconfigureVm.html
|
25
|
+
# @since vCloud API version 5.1
|
26
|
+
def post_reconfigure_vm(id, options={})
|
27
|
+
|
28
|
+
body = Nokogiri::XML::Builder.new do |xml|
|
29
|
+
attrs = {
|
30
|
+
:xmlns => 'http://www.vmware.com/vcloud/v1.5',
|
31
|
+
'xmlns:ovf' => 'http://schemas.dmtf.org/ovf/envelope/1',
|
32
|
+
'xmlns:rasd' => 'http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData',
|
33
|
+
:name => options[:name]
|
34
|
+
}
|
35
|
+
xml.Vm(attrs) do
|
36
|
+
xml.Description options[:description] if options[:description]
|
37
|
+
virtual_hardware_section(xml, options)
|
38
|
+
end
|
39
|
+
end.to_xml
|
40
|
+
|
41
|
+
request(
|
42
|
+
:body => body,
|
43
|
+
:expects => 202,
|
44
|
+
:headers => {'Content-Type' => 'application/vnd.vmware.vcloud.vm+xml'},
|
45
|
+
:method => 'POST',
|
46
|
+
:parser => Fog::ToHashDocument.new,
|
47
|
+
:path => "vApp/#{id}/action/reconfigureVm"
|
48
|
+
)
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def virtual_hardware_section(xml, options)
|
54
|
+
return unless options[:cpu] or options[:memory]
|
55
|
+
xml['ovf'].VirtualHardwareSection do
|
56
|
+
xml['ovf'].Info 'Virtual Hardware Requirements'
|
57
|
+
cpu_section(xml, options[:cpu]) if options[:cpu]
|
58
|
+
memory_section(xml, options[:memory]) if options[:memory]
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def cpu_section(xml, cpu)
|
63
|
+
xml['ovf'].Item do
|
64
|
+
xml['rasd'].AllocationUnits 'hertz * 10 ^ 6'
|
65
|
+
xml['rasd'].InstanceID 5
|
66
|
+
xml['rasd'].ResourceType 3
|
67
|
+
xml['rasd'].VirtualQuantity cpu.to_i
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def memory_section(xml, memory)
|
72
|
+
xml['ovf'].Item do
|
73
|
+
xml['rasd'].AllocationUnits 'byte * 2^20'
|
74
|
+
xml['rasd'].InstanceID 6
|
75
|
+
xml['rasd'].ResourceType 4
|
76
|
+
xml['rasd'].VirtualQuantity memory.to_i
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
end
|
81
|
+
|
82
|
+
class Mock
|
83
|
+
def post_reconfigure_vm(id, options={})
|
84
|
+
unless vm = data[:vms][id]
|
85
|
+
raise Fog::Compute::VcloudDirector::Forbidden.new(
|
86
|
+
'This operation is denied.'
|
87
|
+
)
|
88
|
+
end
|
89
|
+
|
90
|
+
owner = {
|
91
|
+
:href => make_href("vApp/#{id}"),
|
92
|
+
:type => 'application/vnd.vmware.vcloud.vApp+xml'
|
93
|
+
}
|
94
|
+
task_id = enqueue_task(
|
95
|
+
"Updating Virtual Machine #{data[:vms][id][:name]}(#{id})", 'vappUpdateVm', owner,
|
96
|
+
:on_success => lambda do
|
97
|
+
data[:vms][id][:name] = options[:name]
|
98
|
+
data[:vms][id][:description] = options[:description] if options[:description]
|
99
|
+
data[:vms][id][:cpu_count] = options[:cpu] if options[:cpu]
|
100
|
+
data[:vms][id][:memory_in_mb] = options[:memory] if options[:memory]
|
101
|
+
end
|
102
|
+
)
|
103
|
+
body = {
|
104
|
+
:xmlns => xmlns,
|
105
|
+
:xmlns_xsi => xmlns_xsi,
|
106
|
+
:xsi_schemaLocation => xsi_schema_location,
|
107
|
+
}.merge(task_body(task_id))
|
108
|
+
|
109
|
+
Excon::Response.new(
|
110
|
+
:status => 202,
|
111
|
+
:headers => {'Content-Type' => "#{body[:type]};version=#{api_version}"},
|
112
|
+
:body => body
|
113
|
+
)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
@@ -47,6 +47,40 @@ module Fog
|
|
47
47
|
)
|
48
48
|
end
|
49
49
|
end
|
50
|
+
class Mock
|
51
|
+
def post_update_vapp_metadata(id, metadata={})
|
52
|
+
unless vm = data[:vms][id]
|
53
|
+
raise Fog::Compute::VcloudDirector::Forbidden.new(
|
54
|
+
'This operation is denied.'
|
55
|
+
)
|
56
|
+
end
|
57
|
+
|
58
|
+
owner = {
|
59
|
+
:href => make_href("vApp/#{id}"),
|
60
|
+
:type => 'application/vnd.vmware.vcloud.vApp+xml'
|
61
|
+
}
|
62
|
+
task_id = enqueue_task(
|
63
|
+
"Updating Virtual Machine #{data[:vms][id][:name]}(#{id})", 'vappUpdateVm', owner,
|
64
|
+
:on_success => lambda do
|
65
|
+
metadata.each do |k,v|
|
66
|
+
data[:tags][id] ||= {}
|
67
|
+
data[:tags][id][k] = v
|
68
|
+
end
|
69
|
+
end
|
70
|
+
)
|
71
|
+
body = {
|
72
|
+
:xmlns => xmlns,
|
73
|
+
:xmlns_xsi => xmlns_xsi,
|
74
|
+
:xsi_schemaLocation => xsi_schema_location,
|
75
|
+
}.merge(task_body(task_id))
|
76
|
+
|
77
|
+
Excon::Response.new(
|
78
|
+
:status => 202,
|
79
|
+
:headers => {'Content-Type' => "#{body[:type]};version=#{api_version}"},
|
80
|
+
:body => body
|
81
|
+
)
|
82
|
+
end
|
83
|
+
end
|
50
84
|
end
|
51
85
|
end
|
52
86
|
end
|
@@ -110,7 +110,8 @@ module Fog
|
|
110
110
|
if options.key?(:AdminPasswordAuto)
|
111
111
|
AdminPasswordAuto options[:AdminPasswordAuto]
|
112
112
|
end
|
113
|
-
if
|
113
|
+
# Don't add AdminPassword if AdminPasswordAuto is true
|
114
|
+
if options.key?(:AdminPassword) and !options[:AdminPasswordAuto]
|
114
115
|
AdminPassword options[:AdminPassword]
|
115
116
|
end
|
116
117
|
if options.key?(:ResetPasswordRequired)
|
@@ -116,6 +116,37 @@ module Fog
|
|
116
116
|
)
|
117
117
|
end
|
118
118
|
end
|
119
|
+
class Mock
|
120
|
+
def put_network_connection_system_section_vapp(id, options={})
|
121
|
+
unless vm = data[:vms][id]
|
122
|
+
raise Fog::Compute::VcloudDirector::Forbidden.new(
|
123
|
+
'This operation is denied.'
|
124
|
+
)
|
125
|
+
end
|
126
|
+
|
127
|
+
owner = {
|
128
|
+
:href => make_href("vApp/#{id}"),
|
129
|
+
:type => 'application/vnd.vmware.vcloud.vApp+xml'
|
130
|
+
}
|
131
|
+
task_id = enqueue_task(
|
132
|
+
"Updating Virtual Machine #{data[:vms][id][:name]}(#{id})", 'vappUpdateVm', owner,
|
133
|
+
:on_success => lambda do
|
134
|
+
data[:vms][id][:nics].first[:network_name] = options[:network]
|
135
|
+
end
|
136
|
+
)
|
137
|
+
body = {
|
138
|
+
:xmlns => xmlns,
|
139
|
+
:xmlns_xsi => xmlns_xsi,
|
140
|
+
:xsi_schemaLocation => xsi_schema_location,
|
141
|
+
}.merge(task_body(task_id))
|
142
|
+
|
143
|
+
Excon::Response.new(
|
144
|
+
:status => 202,
|
145
|
+
:headers => {'Content-Type' => "#{body[:type]};version=#{api_version}"},
|
146
|
+
:body => body
|
147
|
+
)
|
148
|
+
end
|
149
|
+
end
|
119
150
|
end
|
120
151
|
end
|
121
152
|
end
|
data/lib/fog/version.rb
CHANGED
data/lib/tasks/changelog_task.rb
CHANGED
@@ -7,6 +7,9 @@ require 'fog/openstack/identity_v3'
|
|
7
7
|
require 'fog/openstack/image'
|
8
8
|
require 'fog/openstack/image_v1'
|
9
9
|
require 'fog/openstack/image_v2'
|
10
|
+
require 'fog/openstack/volume'
|
11
|
+
require 'fog/openstack/volume_v1'
|
12
|
+
require 'fog/openstack/volume_v2'
|
10
13
|
require 'fog/openstack/network'
|
11
14
|
|
12
15
|
#
|
@@ -44,8 +47,14 @@ RSpec.shared_context 'OpenStack specs with VCR' do
|
|
44
47
|
Fog.interval = 0
|
45
48
|
# use an auth URL that matches our VCR recordings (IdentityV2 for most
|
46
49
|
# services, but IdentityV3 test obviously needs IdentityV3 auth URL)
|
47
|
-
if [Fog::Identity::OpenStack::V3,
|
48
|
-
|
50
|
+
if [Fog::Identity::OpenStack::V3,
|
51
|
+
Fog::Volume::OpenStack,
|
52
|
+
Fog::Volume::OpenStack::V1,
|
53
|
+
Fog::Volume::OpenStack::V2,
|
54
|
+
Fog::Image::OpenStack,
|
55
|
+
Fog::Image::OpenStack::V1,
|
56
|
+
Fog::Network::OpenStack].include? @service_class
|
57
|
+
@os_auth_url = ENV['OS_AUTH_URL']||'http://devstack.openstack.stack:5000/v3'
|
49
58
|
else
|
50
59
|
@os_auth_url = 'http://devstack.openstack.stack:5000/v2.0'
|
51
60
|
end
|
@@ -2,75 +2,99 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: http://devstack.openstack.stack:5000/
|
5
|
+
uri: http://devstack.openstack.stack:5000/v3/auth/tokens
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string:
|
8
|
+
string: '{"auth":{"identity":{"methods":["password"],"password":{"user":{"password":"password","domain":{"name":"Default"},"name":"admin"}}},"scope":{"project":{"name":"admin","domain":{"name":"Default"}}}}}'
|
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
|
response:
|
17
15
|
status:
|
18
|
-
code:
|
16
|
+
code: 201
|
19
17
|
message: ''
|
20
18
|
headers:
|
21
19
|
Date:
|
22
|
-
-
|
20
|
+
- Thu, 22 Oct 2015 14:04:36 GMT
|
23
21
|
Server:
|
24
22
|
- Apache/2.4.7 (Ubuntu)
|
23
|
+
X-Subject-Token:
|
24
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
25
25
|
Vary:
|
26
26
|
- X-Auth-Token
|
27
27
|
X-Openstack-Request-Id:
|
28
|
-
- req-
|
28
|
+
- req-74c3479d-584d-40b2-a454-c45246c95bdf
|
29
29
|
Content-Length:
|
30
|
-
- '
|
30
|
+
- '5422'
|
31
31
|
Content-Type:
|
32
32
|
- application/json
|
33
33
|
body:
|
34
|
-
encoding:
|
35
|
-
string:
|
36
|
-
"
|
37
|
-
"
|
38
|
-
"name": "admin"}, "
|
39
|
-
|
40
|
-
"
|
41
|
-
"
|
42
|
-
"
|
43
|
-
"
|
44
|
-
"
|
45
|
-
"
|
46
|
-
[{"
|
47
|
-
"region": "RegionOne", "
|
48
|
-
"
|
49
|
-
"
|
50
|
-
|
51
|
-
"
|
52
|
-
"
|
53
|
-
"
|
54
|
-
"region": "RegionOne", "
|
55
|
-
"
|
56
|
-
"
|
57
|
-
|
58
|
-
"
|
59
|
-
"
|
60
|
-
|
61
|
-
"region": "RegionOne", "
|
62
|
-
"
|
63
|
-
"
|
64
|
-
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"region": "RegionOne", "
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"
|
72
|
-
|
73
|
-
|
34
|
+
encoding: UTF-8
|
35
|
+
string: '{"token": {"methods": ["password"], "roles": [{"id": "4968a8cbc2b249ffaafbebce3578021a",
|
36
|
+
"name": "admin"}], "expires_at": "2015-10-22T15:04:36.425180Z", "project":
|
37
|
+
{"domain": {"id": "default", "name": "Default"}, "id": "711f0a64ef5046c084ce904b4445d119",
|
38
|
+
"name": "admin"}, "catalog": [{"endpoints": [{"region_id": "RegionOne", "url":
|
39
|
+
"http://devstack.openstack.stack:8774/v2.1/711f0a64ef5046c084ce904b4445d119", "region":
|
40
|
+
"RegionOne", "interface": "public", "id": "3e2b5a87e9f849db8fac482e568ea11c"},
|
41
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2.1/711f0a64ef5046c084ce904b4445d119",
|
42
|
+
"region": "RegionOne", "interface": "internal", "id": "66c60ed7fa03417e8563ca83a166422a"},
|
43
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2.1/711f0a64ef5046c084ce904b4445d119",
|
44
|
+
"region": "RegionOne", "interface": "admin", "id": "8ec86d49ed8a4005908d9f39c917840a"}],
|
45
|
+
"type": "computev21", "id": "05736928a6ce48d2962485c2d2c2b96e", "name": "novav21"},
|
46
|
+
{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8773/",
|
47
|
+
"region": "RegionOne", "interface": "public", "id": "a363afec032b4c91b37b9727da7e3a77"},
|
48
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8773/", "region":
|
49
|
+
"RegionOne", "interface": "admin", "id": "d2eb5081a1d54b839f4503aba5d11c45"},
|
50
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8773/", "region":
|
51
|
+
"RegionOne", "interface": "internal", "id": "f688ff58b9f14145903b277433bf3f8a"}],
|
52
|
+
"type": "ec2", "id": "4f8dd87a24674c408758d52d1eda10a5", "name": "ec2"}, {"endpoints":
|
53
|
+
[{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v1/711f0a64ef5046c084ce904b4445d119",
|
54
|
+
"region": "RegionOne", "interface": "internal", "id": "3b9c1feb44f54394b50c6ae8b2584c02"},
|
55
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v1/711f0a64ef5046c084ce904b4445d119",
|
56
|
+
"region": "RegionOne", "interface": "public", "id": "bfaacfc7fb554bc1a6f4272d35671e04"},
|
57
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v1/711f0a64ef5046c084ce904b4445d119",
|
58
|
+
"region": "RegionOne", "interface": "admin", "id": "cd4be8b96b654b5faf01d3853f9e1199"}],
|
59
|
+
"type": "volume", "id": "669396c4d7b846178c5ac94d8f6b95e0", "name": "cinder"},
|
60
|
+
{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:35357/v3",
|
61
|
+
"region": "RegionOne", "interface": "admin", "id": "65e5cb67254d4d96bbfca6976fca982f"},
|
62
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v3", "region":
|
63
|
+
"RegionOne", "interface": "public", "id": "ceb1900b305c41b9ad2b81bc423295c4"},
|
64
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v3", "region":
|
65
|
+
"RegionOne", "interface": "internal", "id": "e2b7b9c56b4c4a16ac510f6c0f5f59b1"}],
|
66
|
+
"type": "identityv3", "id": "6aa6623e5dc049fdbe50c6825041f122", "name": "keystonev3"},
|
67
|
+
{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v2.0",
|
68
|
+
"region": "RegionOne", "interface": "internal", "id": "39ba398d753b415aa6eb5683fa11c0c5"},
|
69
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:35357/v2.0", "region":
|
70
|
+
"RegionOne", "interface": "admin", "id": "3a43b35c73da43399d41c1459de8e70b"},
|
71
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:5000/v2.0", "region":
|
72
|
+
"RegionOne", "interface": "public", "id": "e053b151f30a4a7ea89e8457891c5cf5"}],
|
73
|
+
"type": "identity", "id": "84358f2684464393be08a296a9925b81", "name": "keystone"},
|
74
|
+
{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119",
|
75
|
+
"region": "RegionOne", "interface": "admin", "id": "0580634bf1e04f4fb9b9405b2ea8edf4"},
|
76
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119",
|
77
|
+
"region": "RegionOne", "interface": "internal", "id": "4be15002f6d04efdad157f55b066ccc2"},
|
78
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119",
|
79
|
+
"region": "RegionOne", "interface": "public", "id": "dd4f8a525a654ea09d96f7d19e8e0a01"}],
|
80
|
+
"type": "volumev2", "id": "a1037af1005a4533987512c96b448c0a", "name": "cinderv2"},
|
81
|
+
{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:9292",
|
82
|
+
"region": "RegionOne", "interface": "internal", "id": "73c7ee8fcb6d4c6f92752c977e50f912"},
|
83
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:9292", "region":
|
84
|
+
"RegionOne", "interface": "admin", "id": "741b4860f2974bcdafa064e82966e538"},
|
85
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:9292", "region":
|
86
|
+
"RegionOne", "interface": "public", "id": "e549e33b1f5746f49893d9ad309e3eb7"}],
|
87
|
+
"type": "image", "id": "db3d97e416ed4df1a9882b27a84d3bb5", "name": "glance"},
|
88
|
+
{"endpoints": [{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2/711f0a64ef5046c084ce904b4445d119",
|
89
|
+
"region": "RegionOne", "interface": "public", "id": "bc7e85d694594a25844c3a60a7dc41ce"},
|
90
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2/711f0a64ef5046c084ce904b4445d119",
|
91
|
+
"region": "RegionOne", "interface": "admin", "id": "e1fa825a8bc64daa8e999c9ac6b7fd2e"},
|
92
|
+
{"region_id": "RegionOne", "url": "http://devstack.openstack.stack:8774/v2/711f0a64ef5046c084ce904b4445d119",
|
93
|
+
"region": "RegionOne", "interface": "internal", "id": "fc45663a0738469ab25eec228b2dc600"}],
|
94
|
+
"type": "compute", "id": "fdbf81e552cf41388b62b3937d783153", "name": "nova"}],
|
95
|
+
"extras": {}, "user": {"domain": {"id": "default", "name": "Default"}, "id":
|
96
|
+
"9587da3bfe944085b1b2ff99ef04b59d", "name": "admin"}, "audit_ids": ["TmaA51LtRiWw9yQmwSicTA"],
|
97
|
+
"issued_at": "2015-10-22T14:04:36.425225Z"}}'
|
74
98
|
http_version:
|
75
|
-
recorded_at:
|
99
|
+
recorded_at: Thu, 22 Oct 2015 14:04:17 GMT
|
76
100
|
recorded_with: VCR 2.9.3
|
@@ -2,560 +2,610 @@
|
|
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-a10ee731-14a0-4998-8b4d-1a3e6e8397f7
|
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-a10ee731-14a0-4998-8b4d-1a3e6e8397f7
|
33
31
|
Date:
|
34
|
-
-
|
32
|
+
- Thu, 22 Oct 2015 14:04:36 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:17 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:
|
46
|
-
|
43
|
+
string: '{"volume":{"name":"fog-testvolume-1","description":"This is the volume
|
44
|
+
description.","size":1}}'
|
47
45
|
headers:
|
48
46
|
User-Agent:
|
49
|
-
- fog
|
50
|
-
Proxy-Connection:
|
51
|
-
- Keep-Alive
|
47
|
+
- fog-core/1.32.1
|
52
48
|
Content-Type:
|
53
49
|
- application/json
|
54
50
|
Accept:
|
55
51
|
- application/json
|
56
52
|
X-Auth-Token:
|
57
|
-
-
|
53
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
58
54
|
response:
|
59
55
|
status:
|
60
|
-
code:
|
56
|
+
code: 202
|
61
57
|
message: ''
|
62
58
|
headers:
|
63
59
|
X-Compute-Request-Id:
|
64
|
-
- req-
|
60
|
+
- req-e8440ad7-fa39-4d86-be28-76c559e17e22
|
65
61
|
Content-Type:
|
66
62
|
- application/json
|
67
63
|
Content-Length:
|
68
|
-
- '
|
64
|
+
- '807'
|
69
65
|
X-Openstack-Request-Id:
|
70
|
-
- req-
|
66
|
+
- req-e8440ad7-fa39-4d86-be28-76c559e17e22
|
71
67
|
Date:
|
72
|
-
-
|
68
|
+
- Thu, 22 Oct 2015 14:04:37 GMT
|
73
69
|
body:
|
74
|
-
encoding:
|
75
|
-
string:
|
76
|
-
"attachments": [], "
|
77
|
-
|
78
|
-
"
|
79
|
-
|
70
|
+
encoding: UTF-8
|
71
|
+
string: '{"volume": {"status": "creating", "user_id": "9587da3bfe944085b1b2ff99ef04b59d",
|
72
|
+
"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
73
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
74
|
+
"rel": "bookmark"}], "availability_zone": "nova", "bootable": "false", "encrypted":
|
75
|
+
false, "created_at": "2015-10-22T14:04:36.843968", "description": "This is
|
76
|
+
the volume description.", "volume_type": "lvmdriver-1", "name": "fog-testvolume-1",
|
77
|
+
"replication_status": "disabled", "consistencygroup_id": null, "source_volid":
|
78
|
+
null, "snapshot_id": null, "multiattach": false, "metadata": {}, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
80
79
|
"size": 1}}'
|
81
80
|
http_version:
|
82
|
-
recorded_at:
|
81
|
+
recorded_at: Thu, 22 Oct 2015 14:04:18 GMT
|
83
82
|
- request:
|
84
83
|
method: get
|
85
|
-
uri: http://devstack.openstack.stack:8776/
|
84
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/detail?name=fog-testvolume-1
|
86
85
|
body:
|
87
86
|
encoding: US-ASCII
|
88
87
|
string: ''
|
89
88
|
headers:
|
90
89
|
User-Agent:
|
91
|
-
- fog
|
92
|
-
Proxy-Connection:
|
93
|
-
- Keep-Alive
|
90
|
+
- fog-core/1.32.1
|
94
91
|
Content-Type:
|
95
92
|
- application/json
|
96
93
|
Accept:
|
97
94
|
- application/json
|
98
95
|
X-Auth-Token:
|
99
|
-
-
|
96
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
100
97
|
response:
|
101
98
|
status:
|
102
99
|
code: 200
|
103
100
|
message: ''
|
104
101
|
headers:
|
105
102
|
X-Compute-Request-Id:
|
106
|
-
- req-
|
103
|
+
- req-3314550f-9d02-48dd-8e13-1e28f56337ef
|
107
104
|
Content-Type:
|
108
105
|
- application/json
|
109
106
|
Content-Length:
|
110
|
-
- '
|
107
|
+
- '1110'
|
111
108
|
X-Openstack-Request-Id:
|
112
|
-
- req-
|
109
|
+
- req-3314550f-9d02-48dd-8e13-1e28f56337ef
|
113
110
|
Date:
|
114
|
-
-
|
111
|
+
- Thu, 22 Oct 2015 14:04:37 GMT
|
115
112
|
body:
|
116
|
-
encoding:
|
117
|
-
string:
|
118
|
-
"
|
119
|
-
|
120
|
-
"
|
121
|
-
null, "
|
122
|
-
|
123
|
-
"
|
124
|
-
|
125
|
-
null, "
|
113
|
+
encoding: UTF-8
|
114
|
+
string: '{"volumes": [{"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
115
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
116
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
117
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
118
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
119
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
120
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
121
|
+
"metadata": {}, "status": "creating", "description": "This is the volume description.",
|
122
|
+
"multiattach": false, "os-volume-replication:driver_data": null, "source_volid":
|
123
|
+
null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null,
|
124
|
+
"name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
125
|
+
"volume_type": "lvmdriver-1"}]}'
|
126
126
|
http_version:
|
127
|
-
recorded_at:
|
127
|
+
recorded_at: Thu, 22 Oct 2015 14:04:18 GMT
|
128
128
|
- request:
|
129
129
|
method: get
|
130
|
-
uri: http://devstack.openstack.stack:8776/
|
130
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
131
131
|
body:
|
132
132
|
encoding: US-ASCII
|
133
133
|
string: ''
|
134
134
|
headers:
|
135
135
|
User-Agent:
|
136
|
-
- fog
|
137
|
-
Proxy-Connection:
|
138
|
-
- Keep-Alive
|
136
|
+
- fog-core/1.32.1
|
139
137
|
Content-Type:
|
140
138
|
- application/json
|
141
139
|
Accept:
|
142
140
|
- application/json
|
143
141
|
X-Auth-Token:
|
144
|
-
-
|
142
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
145
143
|
response:
|
146
144
|
status:
|
147
145
|
code: 200
|
148
146
|
message: ''
|
149
147
|
headers:
|
150
148
|
X-Compute-Request-Id:
|
151
|
-
- req-
|
149
|
+
- req-96092969-fade-405e-a955-601ff9282db7
|
152
150
|
Content-Type:
|
153
151
|
- application/json
|
154
152
|
Content-Length:
|
155
|
-
- '
|
153
|
+
- '1107'
|
156
154
|
X-Openstack-Request-Id:
|
157
|
-
- req-
|
155
|
+
- req-96092969-fade-405e-a955-601ff9282db7
|
158
156
|
Date:
|
159
|
-
-
|
157
|
+
- Thu, 22 Oct 2015 14:04:37 GMT
|
160
158
|
body:
|
161
|
-
encoding:
|
162
|
-
string:
|
163
|
-
"
|
164
|
-
|
165
|
-
"
|
166
|
-
null, "
|
167
|
-
|
168
|
-
"
|
169
|
-
|
170
|
-
null, "
|
159
|
+
encoding: UTF-8
|
160
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
161
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
162
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
163
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
164
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
165
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
166
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
167
|
+
"metadata": {}, "status": "creating", "description": "This is the volume description.",
|
168
|
+
"multiattach": false, "os-volume-replication:driver_data": null, "source_volid":
|
169
|
+
null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null,
|
170
|
+
"name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
171
|
+
"volume_type": "lvmdriver-1"}}'
|
171
172
|
http_version:
|
172
|
-
recorded_at:
|
173
|
+
recorded_at: Thu, 22 Oct 2015 14:04:18 GMT
|
173
174
|
- request:
|
174
175
|
method: get
|
175
|
-
uri: http://devstack.openstack.stack:8776/
|
176
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
176
177
|
body:
|
177
178
|
encoding: US-ASCII
|
178
179
|
string: ''
|
179
180
|
headers:
|
180
181
|
User-Agent:
|
181
|
-
- fog
|
182
|
-
Proxy-Connection:
|
183
|
-
- Keep-Alive
|
182
|
+
- fog-core/1.32.1
|
184
183
|
Content-Type:
|
185
184
|
- application/json
|
186
185
|
Accept:
|
187
186
|
- application/json
|
188
187
|
X-Auth-Token:
|
189
|
-
-
|
188
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
190
189
|
response:
|
191
190
|
status:
|
192
191
|
code: 200
|
193
192
|
message: ''
|
194
193
|
headers:
|
195
194
|
X-Compute-Request-Id:
|
196
|
-
- req-
|
195
|
+
- req-3fd3bce6-652e-4d76-bbba-fbc64d81c4c7
|
197
196
|
Content-Type:
|
198
197
|
- application/json
|
199
198
|
Content-Length:
|
200
|
-
- '
|
199
|
+
- '1107'
|
201
200
|
X-Openstack-Request-Id:
|
202
|
-
- req-
|
201
|
+
- req-3fd3bce6-652e-4d76-bbba-fbc64d81c4c7
|
203
202
|
Date:
|
204
|
-
-
|
203
|
+
- Thu, 22 Oct 2015 14:04:37 GMT
|
205
204
|
body:
|
206
|
-
encoding:
|
207
|
-
string:
|
208
|
-
"
|
209
|
-
|
210
|
-
"
|
211
|
-
null, "
|
212
|
-
|
213
|
-
"
|
214
|
-
|
215
|
-
null, "
|
205
|
+
encoding: UTF-8
|
206
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
207
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
208
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
209
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
210
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
211
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
212
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
213
|
+
"metadata": {}, "status": "creating", "description": "This is the volume description.",
|
214
|
+
"multiattach": false, "os-volume-replication:driver_data": null, "source_volid":
|
215
|
+
null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null,
|
216
|
+
"name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
217
|
+
"volume_type": "lvmdriver-1"}}'
|
216
218
|
http_version:
|
217
|
-
recorded_at:
|
219
|
+
recorded_at: Thu, 22 Oct 2015 14:04:19 GMT
|
218
220
|
- request:
|
219
221
|
method: get
|
220
|
-
uri: http://devstack.openstack.stack:8776/
|
222
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
221
223
|
body:
|
222
224
|
encoding: US-ASCII
|
223
225
|
string: ''
|
224
226
|
headers:
|
225
227
|
User-Agent:
|
226
|
-
- fog
|
227
|
-
Proxy-Connection:
|
228
|
-
- Keep-Alive
|
228
|
+
- fog-core/1.32.1
|
229
229
|
Content-Type:
|
230
230
|
- application/json
|
231
231
|
Accept:
|
232
232
|
- application/json
|
233
233
|
X-Auth-Token:
|
234
|
-
-
|
234
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
235
235
|
response:
|
236
236
|
status:
|
237
237
|
code: 200
|
238
238
|
message: ''
|
239
239
|
headers:
|
240
240
|
X-Compute-Request-Id:
|
241
|
-
- req-
|
241
|
+
- req-26751615-2f2c-4142-b78a-c8e118b9847a
|
242
242
|
Content-Type:
|
243
243
|
- application/json
|
244
244
|
Content-Length:
|
245
|
-
- '
|
245
|
+
- '1108'
|
246
246
|
X-Openstack-Request-Id:
|
247
|
-
- req-
|
247
|
+
- req-26751615-2f2c-4142-b78a-c8e118b9847a
|
248
248
|
Date:
|
249
|
-
-
|
249
|
+
- Thu, 22 Oct 2015 14:04:39 GMT
|
250
250
|
body:
|
251
|
-
encoding:
|
252
|
-
string:
|
253
|
-
"
|
254
|
-
|
255
|
-
"
|
256
|
-
null, "
|
257
|
-
|
258
|
-
"
|
259
|
-
|
260
|
-
|
251
|
+
encoding: UTF-8
|
252
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
253
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
254
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
255
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
256
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
257
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
258
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
259
|
+
"metadata": {}, "status": "available", "description": "This is the volume
|
260
|
+
description.", "multiattach": false, "os-volume-replication:driver_data":
|
261
|
+
null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id":
|
262
|
+
null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
263
|
+
"volume_type": "lvmdriver-1"}}'
|
261
264
|
http_version:
|
262
|
-
recorded_at:
|
265
|
+
recorded_at: Thu, 22 Oct 2015 14:04:20 GMT
|
263
266
|
- request:
|
264
|
-
method:
|
265
|
-
uri: http://devstack.openstack.stack:8776/
|
267
|
+
method: get
|
268
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/detail?name=fog-testvolume-1
|
266
269
|
body:
|
267
270
|
encoding: US-ASCII
|
268
271
|
string: ''
|
269
272
|
headers:
|
270
273
|
User-Agent:
|
271
|
-
- fog
|
272
|
-
Proxy-Connection:
|
273
|
-
- Keep-Alive
|
274
|
+
- fog-core/1.32.1
|
274
275
|
Content-Type:
|
275
276
|
- application/json
|
276
277
|
Accept:
|
277
278
|
- application/json
|
278
279
|
X-Auth-Token:
|
279
|
-
-
|
280
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
280
281
|
response:
|
281
282
|
status:
|
282
|
-
code:
|
283
|
+
code: 200
|
283
284
|
message: ''
|
284
285
|
headers:
|
286
|
+
X-Compute-Request-Id:
|
287
|
+
- req-ba2306a7-d753-4c34-91b2-17de6f227162
|
285
288
|
Content-Type:
|
286
|
-
-
|
289
|
+
- application/json
|
287
290
|
Content-Length:
|
288
|
-
- '
|
291
|
+
- '1111'
|
289
292
|
X-Openstack-Request-Id:
|
290
|
-
- req-
|
293
|
+
- req-ba2306a7-d753-4c34-91b2-17de6f227162
|
291
294
|
Date:
|
292
|
-
-
|
295
|
+
- Thu, 22 Oct 2015 14:04:39 GMT
|
293
296
|
body:
|
294
|
-
encoding:
|
295
|
-
string: '
|
297
|
+
encoding: UTF-8
|
298
|
+
string: '{"volumes": [{"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
299
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
300
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
301
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
302
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
303
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
304
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
305
|
+
"metadata": {}, "status": "available", "description": "This is the volume
|
306
|
+
description.", "multiattach": false, "os-volume-replication:driver_data":
|
307
|
+
null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id":
|
308
|
+
null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
309
|
+
"volume_type": "lvmdriver-1"}]}'
|
296
310
|
http_version:
|
297
|
-
recorded_at:
|
311
|
+
recorded_at: Thu, 22 Oct 2015 14:04:20 GMT
|
298
312
|
- request:
|
299
313
|
method: get
|
300
|
-
uri: http://devstack.openstack.stack:8776/
|
314
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
301
315
|
body:
|
302
316
|
encoding: US-ASCII
|
303
317
|
string: ''
|
304
318
|
headers:
|
305
319
|
User-Agent:
|
306
|
-
- fog
|
307
|
-
Proxy-Connection:
|
308
|
-
- Keep-Alive
|
320
|
+
- fog-core/1.32.1
|
309
321
|
Content-Type:
|
310
322
|
- application/json
|
311
323
|
Accept:
|
312
324
|
- application/json
|
313
325
|
X-Auth-Token:
|
314
|
-
-
|
326
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
315
327
|
response:
|
316
328
|
status:
|
317
329
|
code: 200
|
318
330
|
message: ''
|
319
331
|
headers:
|
320
332
|
X-Compute-Request-Id:
|
321
|
-
- req-
|
333
|
+
- req-53f3edfc-6b04-4c95-88da-c4c6ec8f630a
|
322
334
|
Content-Type:
|
323
335
|
- application/json
|
324
336
|
Content-Length:
|
325
|
-
- '
|
337
|
+
- '1108'
|
326
338
|
X-Openstack-Request-Id:
|
327
|
-
- req-
|
339
|
+
- req-53f3edfc-6b04-4c95-88da-c4c6ec8f630a
|
328
340
|
Date:
|
329
|
-
-
|
341
|
+
- Thu, 22 Oct 2015 14:04:39 GMT
|
330
342
|
body:
|
331
|
-
encoding:
|
332
|
-
string:
|
333
|
-
"
|
334
|
-
|
335
|
-
"
|
336
|
-
null, "
|
337
|
-
|
338
|
-
"
|
339
|
-
|
340
|
-
|
343
|
+
encoding: UTF-8
|
344
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
345
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
346
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
347
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
348
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
349
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
350
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
351
|
+
"metadata": {}, "status": "available", "description": "This is the volume
|
352
|
+
description.", "multiattach": false, "os-volume-replication:driver_data":
|
353
|
+
null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id":
|
354
|
+
null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
355
|
+
"volume_type": "lvmdriver-1"}}'
|
341
356
|
http_version:
|
342
|
-
recorded_at:
|
357
|
+
recorded_at: Thu, 22 Oct 2015 14:04:20 GMT
|
343
358
|
- request:
|
344
359
|
method: get
|
345
|
-
uri: http://devstack.openstack.stack:8776/
|
360
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
346
361
|
body:
|
347
362
|
encoding: US-ASCII
|
348
363
|
string: ''
|
349
364
|
headers:
|
350
365
|
User-Agent:
|
351
|
-
- fog
|
352
|
-
Proxy-Connection:
|
353
|
-
- Keep-Alive
|
366
|
+
- fog-core/1.32.1
|
354
367
|
Content-Type:
|
355
368
|
- application/json
|
356
369
|
Accept:
|
357
370
|
- application/json
|
358
371
|
X-Auth-Token:
|
359
|
-
-
|
372
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
360
373
|
response:
|
361
374
|
status:
|
362
375
|
code: 200
|
363
376
|
message: ''
|
364
377
|
headers:
|
365
378
|
X-Compute-Request-Id:
|
366
|
-
- req-
|
379
|
+
- req-59d84c83-e92e-4b3f-be2f-217e847b0906
|
367
380
|
Content-Type:
|
368
381
|
- application/json
|
369
382
|
Content-Length:
|
370
|
-
- '
|
383
|
+
- '1108'
|
371
384
|
X-Openstack-Request-Id:
|
372
|
-
- req-
|
385
|
+
- req-59d84c83-e92e-4b3f-be2f-217e847b0906
|
373
386
|
Date:
|
374
|
-
-
|
387
|
+
- Thu, 22 Oct 2015 14:04:39 GMT
|
388
|
+
body:
|
389
|
+
encoding: UTF-8
|
390
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
391
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
392
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
393
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
394
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
395
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
396
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
397
|
+
"metadata": {}, "status": "available", "description": "This is the volume
|
398
|
+
description.", "multiattach": false, "os-volume-replication:driver_data":
|
399
|
+
null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id":
|
400
|
+
null, "name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
401
|
+
"volume_type": "lvmdriver-1"}}'
|
402
|
+
http_version:
|
403
|
+
recorded_at: Thu, 22 Oct 2015 14:04:20 GMT
|
404
|
+
- request:
|
405
|
+
method: delete
|
406
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
375
407
|
body:
|
376
408
|
encoding: US-ASCII
|
377
|
-
string:
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
409
|
+
string: ''
|
410
|
+
headers:
|
411
|
+
User-Agent:
|
412
|
+
- fog-core/1.32.1
|
413
|
+
Content-Type:
|
414
|
+
- application/json
|
415
|
+
Accept:
|
416
|
+
- application/json
|
417
|
+
X-Auth-Token:
|
418
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
419
|
+
response:
|
420
|
+
status:
|
421
|
+
code: 202
|
422
|
+
message: ''
|
423
|
+
headers:
|
424
|
+
Content-Type:
|
425
|
+
- text/html; charset=UTF-8
|
426
|
+
Content-Length:
|
427
|
+
- '0'
|
428
|
+
X-Openstack-Request-Id:
|
429
|
+
- req-598bd6a9-e090-411c-a57f-953ef4a39dd0
|
430
|
+
Date:
|
431
|
+
- Thu, 22 Oct 2015 14:04:40 GMT
|
432
|
+
body:
|
433
|
+
encoding: UTF-8
|
434
|
+
string: ''
|
386
435
|
http_version:
|
387
|
-
recorded_at:
|
436
|
+
recorded_at: Thu, 22 Oct 2015 14:04:21 GMT
|
388
437
|
- request:
|
389
438
|
method: get
|
390
|
-
uri: http://devstack.openstack.stack:8776/
|
439
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
391
440
|
body:
|
392
441
|
encoding: US-ASCII
|
393
442
|
string: ''
|
394
443
|
headers:
|
395
444
|
User-Agent:
|
396
|
-
- fog
|
397
|
-
Proxy-Connection:
|
398
|
-
- Keep-Alive
|
445
|
+
- fog-core/1.32.1
|
399
446
|
Content-Type:
|
400
447
|
- application/json
|
401
448
|
Accept:
|
402
449
|
- application/json
|
403
450
|
X-Auth-Token:
|
404
|
-
-
|
451
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
405
452
|
response:
|
406
453
|
status:
|
407
454
|
code: 200
|
408
455
|
message: ''
|
409
456
|
headers:
|
410
457
|
X-Compute-Request-Id:
|
411
|
-
- req-
|
458
|
+
- req-f6a90374-b452-4a69-8122-65a038b325ca
|
412
459
|
Content-Type:
|
413
460
|
- application/json
|
414
461
|
Content-Length:
|
415
|
-
- '
|
462
|
+
- '1107'
|
416
463
|
X-Openstack-Request-Id:
|
417
|
-
- req-
|
464
|
+
- req-f6a90374-b452-4a69-8122-65a038b325ca
|
418
465
|
Date:
|
419
|
-
-
|
466
|
+
- Thu, 22 Oct 2015 14:04:40 GMT
|
420
467
|
body:
|
421
|
-
encoding:
|
422
|
-
string:
|
423
|
-
"
|
424
|
-
|
425
|
-
"
|
426
|
-
null, "
|
427
|
-
|
428
|
-
"
|
429
|
-
|
430
|
-
null, "
|
468
|
+
encoding: UTF-8
|
469
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
470
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
471
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
472
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
473
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
474
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
475
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
476
|
+
"metadata": {}, "status": "deleting", "description": "This is the volume description.",
|
477
|
+
"multiattach": false, "os-volume-replication:driver_data": null, "source_volid":
|
478
|
+
null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null,
|
479
|
+
"name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
480
|
+
"volume_type": "lvmdriver-1"}}'
|
431
481
|
http_version:
|
432
|
-
recorded_at:
|
482
|
+
recorded_at: Thu, 22 Oct 2015 14:04:21 GMT
|
433
483
|
- request:
|
434
484
|
method: get
|
435
|
-
uri: http://devstack.openstack.stack:8776/
|
485
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
436
486
|
body:
|
437
487
|
encoding: US-ASCII
|
438
488
|
string: ''
|
439
489
|
headers:
|
440
490
|
User-Agent:
|
441
|
-
- fog
|
442
|
-
Proxy-Connection:
|
443
|
-
- Keep-Alive
|
491
|
+
- fog-core/1.32.1
|
444
492
|
Content-Type:
|
445
493
|
- application/json
|
446
494
|
Accept:
|
447
495
|
- application/json
|
448
496
|
X-Auth-Token:
|
449
|
-
-
|
497
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
450
498
|
response:
|
451
499
|
status:
|
452
500
|
code: 200
|
453
501
|
message: ''
|
454
502
|
headers:
|
455
503
|
X-Compute-Request-Id:
|
456
|
-
- req-
|
504
|
+
- req-f6757e97-5f6a-411b-b30d-c775b3efba6f
|
457
505
|
Content-Type:
|
458
506
|
- application/json
|
459
507
|
Content-Length:
|
460
|
-
- '
|
508
|
+
- '1107'
|
461
509
|
X-Openstack-Request-Id:
|
462
|
-
- req-
|
510
|
+
- req-f6757e97-5f6a-411b-b30d-c775b3efba6f
|
463
511
|
Date:
|
464
|
-
-
|
512
|
+
- Thu, 22 Oct 2015 14:04:42 GMT
|
465
513
|
body:
|
466
|
-
encoding:
|
467
|
-
string:
|
468
|
-
"
|
469
|
-
|
470
|
-
"
|
471
|
-
null, "
|
472
|
-
|
473
|
-
"
|
474
|
-
|
475
|
-
null, "
|
514
|
+
encoding: UTF-8
|
515
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
516
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
517
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
518
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
519
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
520
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
521
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
522
|
+
"metadata": {}, "status": "deleting", "description": "This is the volume description.",
|
523
|
+
"multiattach": false, "os-volume-replication:driver_data": null, "source_volid":
|
524
|
+
null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null,
|
525
|
+
"name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
526
|
+
"volume_type": "lvmdriver-1"}}'
|
476
527
|
http_version:
|
477
|
-
recorded_at:
|
528
|
+
recorded_at: Thu, 22 Oct 2015 14:04:23 GMT
|
478
529
|
- request:
|
479
530
|
method: get
|
480
|
-
uri: http://devstack.openstack.stack:8776/
|
531
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
481
532
|
body:
|
482
533
|
encoding: US-ASCII
|
483
534
|
string: ''
|
484
535
|
headers:
|
485
536
|
User-Agent:
|
486
|
-
- fog
|
487
|
-
Proxy-Connection:
|
488
|
-
- Keep-Alive
|
537
|
+
- fog-core/1.32.1
|
489
538
|
Content-Type:
|
490
539
|
- application/json
|
491
540
|
Accept:
|
492
541
|
- application/json
|
493
542
|
X-Auth-Token:
|
494
|
-
-
|
543
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
495
544
|
response:
|
496
545
|
status:
|
497
546
|
code: 200
|
498
547
|
message: ''
|
499
548
|
headers:
|
500
549
|
X-Compute-Request-Id:
|
501
|
-
- req-
|
550
|
+
- req-31224e54-7132-40a1-a1df-aa0424bf3389
|
502
551
|
Content-Type:
|
503
552
|
- application/json
|
504
553
|
Content-Length:
|
505
|
-
- '
|
554
|
+
- '1107'
|
506
555
|
X-Openstack-Request-Id:
|
507
|
-
- req-
|
556
|
+
- req-31224e54-7132-40a1-a1df-aa0424bf3389
|
508
557
|
Date:
|
509
|
-
-
|
558
|
+
- Thu, 22 Oct 2015 14:04:45 GMT
|
510
559
|
body:
|
511
|
-
encoding:
|
512
|
-
string:
|
513
|
-
"
|
514
|
-
|
515
|
-
"
|
516
|
-
null, "
|
517
|
-
|
518
|
-
"
|
519
|
-
|
520
|
-
null, "
|
560
|
+
encoding: UTF-8
|
561
|
+
string: '{"volume": {"attachments": [], "links": [{"href": "http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
562
|
+
"rel": "self"}, {"href": "http://devstack.openstack.stack:8776/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
563
|
+
"rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host":
|
564
|
+
"openstack@lvmdriver-1#lvmdriver-1", "encrypted": false, "os-volume-replication:extended_status":
|
565
|
+
null, "replication_status": "disabled", "snapshot_id": null, "id": "7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d",
|
566
|
+
"size": 1, "user_id": "9587da3bfe944085b1b2ff99ef04b59d", "os-vol-tenant-attr:tenant_id":
|
567
|
+
"711f0a64ef5046c084ce904b4445d119", "os-vol-mig-status-attr:migstat": null,
|
568
|
+
"metadata": {}, "status": "deleting", "description": "This is the volume description.",
|
569
|
+
"multiattach": false, "os-volume-replication:driver_data": null, "source_volid":
|
570
|
+
null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null,
|
571
|
+
"name": "fog-testvolume-1", "bootable": "false", "created_at": "2015-10-22T14:04:36.000000",
|
572
|
+
"volume_type": "lvmdriver-1"}}'
|
521
573
|
http_version:
|
522
|
-
recorded_at:
|
574
|
+
recorded_at: Thu, 22 Oct 2015 14:04:26 GMT
|
523
575
|
- request:
|
524
576
|
method: get
|
525
|
-
uri: http://devstack.openstack.stack:8776/
|
577
|
+
uri: http://devstack.openstack.stack:8776/v2/711f0a64ef5046c084ce904b4445d119/volumes/7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
526
578
|
body:
|
527
579
|
encoding: US-ASCII
|
528
580
|
string: ''
|
529
581
|
headers:
|
530
582
|
User-Agent:
|
531
|
-
- fog
|
532
|
-
Proxy-Connection:
|
533
|
-
- Keep-Alive
|
583
|
+
- fog-core/1.32.1
|
534
584
|
Content-Type:
|
535
585
|
- application/json
|
536
586
|
Accept:
|
537
587
|
- application/json
|
538
588
|
X-Auth-Token:
|
539
|
-
-
|
589
|
+
- f8e9e59847aa47f1b80eb28452cef591
|
540
590
|
response:
|
541
591
|
status:
|
542
592
|
code: 404
|
543
593
|
message: ''
|
544
594
|
headers:
|
545
595
|
Content-Length:
|
546
|
-
- '
|
596
|
+
- '109'
|
547
597
|
Content-Type:
|
548
598
|
- application/json; charset=UTF-8
|
549
599
|
X-Compute-Request-Id:
|
550
|
-
- req-
|
600
|
+
- req-f36b93e5-3566-4502-b04c-395ce6d2aeb0
|
551
601
|
X-Openstack-Request-Id:
|
552
|
-
- req-
|
602
|
+
- req-f36b93e5-3566-4502-b04c-395ce6d2aeb0
|
553
603
|
Date:
|
554
|
-
-
|
604
|
+
- Thu, 22 Oct 2015 14:04:49 GMT
|
555
605
|
body:
|
556
|
-
encoding:
|
557
|
-
string:
|
558
|
-
"code": 404}}'
|
606
|
+
encoding: UTF-8
|
607
|
+
string: '{"itemNotFound": {"message": "Volume 7e04fa07-24b0-4dd2-b24c-6c2fa9da8d9d
|
608
|
+
could not be found.", "code": 404}}'
|
559
609
|
http_version:
|
560
|
-
recorded_at:
|
610
|
+
recorded_at: Thu, 22 Oct 2015 14:04:30 GMT
|
561
611
|
recorded_with: VCR 2.9.3
|