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