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,1236 +2,1566 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: http://
|
5
|
+
uri: http://10.97.17.84:35357/v3/projects?name=p-foobar69
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- fog
|
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
|
-
-
|
26
|
+
- Fri, 02 Oct 2015 11:41:38 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-735c88da-7aaf-4a44-b3a5-dfa31a16dfe7
|
31
33
|
Content-Length:
|
32
|
-
- '
|
34
|
+
- '123'
|
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: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-foobar69",
|
38
48
|
"previous": null, "next": null}, "projects": []}'
|
39
49
|
http_version:
|
40
|
-
recorded_at:
|
50
|
+
recorded_at: Fri, 02 Oct 2015 11:41:26 GMT
|
41
51
|
- request:
|
42
52
|
method: get
|
43
|
-
uri: http://
|
53
|
+
uri: http://10.97.17.84:35357/v3/projects?name=p-foobar69
|
44
54
|
body:
|
45
55
|
encoding: US-ASCII
|
46
56
|
string: ''
|
47
57
|
headers:
|
48
58
|
User-Agent:
|
49
|
-
- fog
|
59
|
+
- fog-core/1.32.1
|
60
|
+
Proxy-Connection:
|
61
|
+
- Keep-Alive
|
50
62
|
Content-Type:
|
51
63
|
- application/json
|
52
64
|
Accept:
|
53
65
|
- application/json
|
54
66
|
X-Auth-Token:
|
55
|
-
-
|
67
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
56
68
|
response:
|
57
69
|
status:
|
58
70
|
code: 200
|
59
71
|
message: ''
|
60
72
|
headers:
|
61
73
|
Date:
|
62
|
-
-
|
74
|
+
- Fri, 02 Oct 2015 11:41:38 GMT
|
63
75
|
Server:
|
64
76
|
- Apache/2.4.7 (Ubuntu)
|
65
77
|
Vary:
|
66
78
|
- X-Auth-Token
|
67
79
|
X-Openstack-Request-Id:
|
68
|
-
- req-
|
80
|
+
- req-fba0f650-114a-47b2-8814-6e2623847ebb
|
69
81
|
Content-Length:
|
70
|
-
- '
|
82
|
+
- '123'
|
71
83
|
Content-Type:
|
72
84
|
- application/json
|
85
|
+
X-Cache:
|
86
|
+
- MISS from i056593-vagrant
|
87
|
+
X-Cache-Lookup:
|
88
|
+
- MISS from i056593-vagrant:3128
|
89
|
+
Via:
|
90
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
91
|
+
Connection:
|
92
|
+
- keep-alive
|
73
93
|
body:
|
74
|
-
encoding:
|
75
|
-
string:
|
94
|
+
encoding: UTF-8
|
95
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects?name=p-foobar69",
|
76
96
|
"previous": null, "next": null}, "projects": []}'
|
77
97
|
http_version:
|
78
|
-
recorded_at:
|
98
|
+
recorded_at: Fri, 02 Oct 2015 11:41:26 GMT
|
79
99
|
- request:
|
80
100
|
method: post
|
81
|
-
uri: http://
|
101
|
+
uri: http://10.97.17.84:35357/v3/projects
|
82
102
|
body:
|
83
103
|
encoding: UTF-8
|
84
|
-
string:
|
104
|
+
string: '{"project":{"name":"p-foobar69"}}'
|
85
105
|
headers:
|
86
106
|
User-Agent:
|
87
|
-
- fog
|
107
|
+
- fog-core/1.32.1
|
108
|
+
Proxy-Connection:
|
109
|
+
- Keep-Alive
|
88
110
|
Content-Type:
|
89
111
|
- application/json
|
90
112
|
Accept:
|
91
113
|
- application/json
|
92
114
|
X-Auth-Token:
|
93
|
-
-
|
115
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
94
116
|
response:
|
95
117
|
status:
|
96
118
|
code: 201
|
97
119
|
message: ''
|
98
120
|
headers:
|
99
121
|
Date:
|
100
|
-
-
|
122
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
101
123
|
Server:
|
102
124
|
- Apache/2.4.7 (Ubuntu)
|
103
125
|
Vary:
|
104
126
|
- X-Auth-Token
|
105
127
|
X-Openstack-Request-Id:
|
106
|
-
- req-
|
128
|
+
- req-00a9895b-7926-4079-8ffe-84df4b61010a
|
107
129
|
Content-Length:
|
108
|
-
- '
|
130
|
+
- '248'
|
109
131
|
Content-Type:
|
110
132
|
- application/json
|
133
|
+
X-Cache:
|
134
|
+
- MISS from i056593-vagrant
|
135
|
+
X-Cache-Lookup:
|
136
|
+
- MISS from i056593-vagrant:3128
|
137
|
+
Via:
|
138
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
139
|
+
Connection:
|
140
|
+
- keep-alive
|
111
141
|
body:
|
112
|
-
encoding:
|
113
|
-
string:
|
114
|
-
"enabled": true, "id": "
|
142
|
+
encoding: UTF-8
|
143
|
+
string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16"},
|
144
|
+
"enabled": true, "id": "f633bd1df1f74a53b85a003b0b1c5a16", "parent_id": null,
|
115
145
|
"domain_id": "default", "name": "p-foobar69"}}'
|
116
146
|
http_version:
|
117
|
-
recorded_at:
|
147
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
118
148
|
- request:
|
119
149
|
method: get
|
120
|
-
uri: http://
|
150
|
+
uri: http://10.97.17.84:35357/v3/roles?name=baz
|
121
151
|
body:
|
122
152
|
encoding: US-ASCII
|
123
153
|
string: ''
|
124
154
|
headers:
|
125
155
|
User-Agent:
|
126
|
-
- fog
|
156
|
+
- fog-core/1.32.1
|
157
|
+
Proxy-Connection:
|
158
|
+
- Keep-Alive
|
127
159
|
Content-Type:
|
128
160
|
- application/json
|
129
161
|
Accept:
|
130
162
|
- application/json
|
131
163
|
X-Auth-Token:
|
132
|
-
-
|
164
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
133
165
|
response:
|
134
166
|
status:
|
135
167
|
code: 200
|
136
168
|
message: ''
|
137
169
|
headers:
|
138
170
|
Date:
|
139
|
-
-
|
171
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
140
172
|
Server:
|
141
173
|
- Apache/2.4.7 (Ubuntu)
|
142
174
|
Vary:
|
143
175
|
- X-Auth-Token
|
144
176
|
X-Openstack-Request-Id:
|
145
|
-
- req-
|
177
|
+
- req-d67d0f3d-86fc-4b52-9d1e-3bab06e225bf
|
146
178
|
Content-Length:
|
147
|
-
- '
|
179
|
+
- '110'
|
148
180
|
Content-Type:
|
149
181
|
- application/json
|
182
|
+
X-Cache:
|
183
|
+
- MISS from i056593-vagrant
|
184
|
+
X-Cache-Lookup:
|
185
|
+
- MISS from i056593-vagrant:3128
|
186
|
+
Via:
|
187
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
188
|
+
Connection:
|
189
|
+
- keep-alive
|
150
190
|
body:
|
151
|
-
encoding:
|
152
|
-
string:
|
153
|
-
|
191
|
+
encoding: UTF-8
|
192
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/roles?name=baz", "previous":
|
193
|
+
null, "next": null}, "roles": []}'
|
154
194
|
http_version:
|
155
|
-
recorded_at:
|
195
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
156
196
|
- request:
|
157
197
|
method: post
|
158
|
-
uri: http://
|
198
|
+
uri: http://10.97.17.84:35357/v3/roles
|
159
199
|
body:
|
160
200
|
encoding: UTF-8
|
161
|
-
string:
|
201
|
+
string: '{"role":{"name":"baz69"}}'
|
162
202
|
headers:
|
163
203
|
User-Agent:
|
164
|
-
- fog
|
204
|
+
- fog-core/1.32.1
|
205
|
+
Proxy-Connection:
|
206
|
+
- Keep-Alive
|
165
207
|
Content-Type:
|
166
208
|
- application/json
|
167
209
|
Accept:
|
168
210
|
- application/json
|
169
211
|
X-Auth-Token:
|
170
|
-
-
|
212
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
171
213
|
response:
|
172
214
|
status:
|
173
215
|
code: 201
|
174
216
|
message: ''
|
175
217
|
headers:
|
176
218
|
Date:
|
177
|
-
-
|
219
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
178
220
|
Server:
|
179
221
|
- Apache/2.4.7 (Ubuntu)
|
180
222
|
Vary:
|
181
223
|
- X-Auth-Token
|
182
224
|
X-Openstack-Request-Id:
|
183
|
-
- req-
|
225
|
+
- req-b6737ff2-4126-4d01-af6d-5ba2e14f3570
|
184
226
|
Content-Length:
|
185
|
-
- '
|
227
|
+
- '158'
|
186
228
|
Content-Type:
|
187
229
|
- application/json
|
230
|
+
X-Cache:
|
231
|
+
- MISS from i056593-vagrant
|
232
|
+
X-Cache-Lookup:
|
233
|
+
- MISS from i056593-vagrant:3128
|
234
|
+
Via:
|
235
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
236
|
+
Connection:
|
237
|
+
- keep-alive
|
188
238
|
body:
|
189
|
-
encoding:
|
190
|
-
string:
|
191
|
-
"http://
|
192
|
-
"
|
239
|
+
encoding: UTF-8
|
240
|
+
string: '{"role": {"id": "5b1a88be852f46da95c44cddaa29e562", "links": {"self":
|
241
|
+
"http://10.97.17.84:35357/v3/roles/5b1a88be852f46da95c44cddaa29e562"}, "name":
|
242
|
+
"baz69"}}'
|
193
243
|
http_version:
|
194
|
-
recorded_at:
|
244
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
195
245
|
- request:
|
196
246
|
method: post
|
197
|
-
uri: http://
|
247
|
+
uri: http://10.97.17.84:35357/v3/users
|
198
248
|
body:
|
199
249
|
encoding: UTF-8
|
200
|
-
string:
|
250
|
+
string: '{"user":{"name":"u-foobar69","email":"foobar@example.com","password":"s3cret!"}}'
|
201
251
|
headers:
|
202
252
|
User-Agent:
|
203
|
-
- fog
|
253
|
+
- fog-core/1.32.1
|
254
|
+
Proxy-Connection:
|
255
|
+
- Keep-Alive
|
204
256
|
Content-Type:
|
205
257
|
- application/json
|
206
258
|
Accept:
|
207
259
|
- application/json
|
208
260
|
X-Auth-Token:
|
209
|
-
-
|
261
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
210
262
|
response:
|
211
263
|
status:
|
212
264
|
code: 201
|
213
265
|
message: ''
|
214
266
|
headers:
|
215
267
|
Date:
|
216
|
-
-
|
268
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
217
269
|
Server:
|
218
270
|
- Apache/2.4.7 (Ubuntu)
|
219
271
|
Vary:
|
220
272
|
- X-Auth-Token
|
221
273
|
X-Openstack-Request-Id:
|
222
|
-
- req-
|
274
|
+
- req-95eeec3f-2501-4b59-9bb5-cc884d4b585f
|
223
275
|
Content-Length:
|
224
|
-
- '
|
276
|
+
- '235'
|
225
277
|
Content-Type:
|
226
278
|
- application/json
|
279
|
+
X-Cache:
|
280
|
+
- MISS from i056593-vagrant
|
281
|
+
X-Cache-Lookup:
|
282
|
+
- MISS from i056593-vagrant:3128
|
283
|
+
Via:
|
284
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
285
|
+
Connection:
|
286
|
+
- keep-alive
|
227
287
|
body:
|
228
|
-
encoding:
|
229
|
-
string:
|
288
|
+
encoding: UTF-8
|
289
|
+
string: '{"user": {"name": "u-foobar69", "links": {"self": "http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a"},
|
230
290
|
"domain_id": "default", "enabled": true, "email": "foobar@example.com", "id":
|
231
|
-
"
|
291
|
+
"0b4fb7d6f0cb4d93a2ad541ca8fad29a"}}'
|
232
292
|
http_version:
|
233
|
-
recorded_at:
|
293
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
234
294
|
- request:
|
235
295
|
method: post
|
236
|
-
uri: http://
|
296
|
+
uri: http://10.97.17.84:35357/v3/groups
|
237
297
|
body:
|
238
298
|
encoding: UTF-8
|
239
|
-
string:
|
299
|
+
string: '{"group":{"name":"g-foobar69","description":"Group of Foobar users"}}'
|
240
300
|
headers:
|
241
301
|
User-Agent:
|
242
|
-
- fog
|
302
|
+
- fog-core/1.32.1
|
303
|
+
Proxy-Connection:
|
304
|
+
- Keep-Alive
|
243
305
|
Content-Type:
|
244
306
|
- application/json
|
245
307
|
Accept:
|
246
308
|
- application/json
|
247
309
|
X-Auth-Token:
|
248
|
-
-
|
310
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
249
311
|
response:
|
250
312
|
status:
|
251
313
|
code: 201
|
252
314
|
message: ''
|
253
315
|
headers:
|
254
316
|
Date:
|
255
|
-
-
|
317
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
256
318
|
Server:
|
257
319
|
- Apache/2.4.7 (Ubuntu)
|
258
320
|
Vary:
|
259
321
|
- X-Auth-Token
|
260
322
|
X-Openstack-Request-Id:
|
261
|
-
- req-
|
323
|
+
- req-62a89a0e-cbe9-4426-9245-f406f8c01d8b
|
262
324
|
Content-Length:
|
263
|
-
- '
|
325
|
+
- '229'
|
264
326
|
Content-Type:
|
265
327
|
- application/json
|
328
|
+
X-Cache:
|
329
|
+
- MISS from i056593-vagrant
|
330
|
+
X-Cache-Lookup:
|
331
|
+
- MISS from i056593-vagrant:3128
|
332
|
+
Via:
|
333
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
334
|
+
Connection:
|
335
|
+
- keep-alive
|
266
336
|
body:
|
267
|
-
encoding:
|
268
|
-
string:
|
269
|
-
users", "id": "
|
337
|
+
encoding: UTF-8
|
338
|
+
string: '{"group": {"domain_id": "default", "description": "Group of Foobar
|
339
|
+
users", "id": "653527097d074b268f24905a69b32ac8", "links": {"self": "http://10.97.17.84:35357/v3/groups/653527097d074b268f24905a69b32ac8"},
|
270
340
|
"name": "g-foobar69"}}'
|
271
341
|
http_version:
|
272
|
-
recorded_at:
|
342
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
273
343
|
- request:
|
274
344
|
method: put
|
275
|
-
uri: http://
|
345
|
+
uri: http://10.97.17.84:35357/v3/groups/653527097d074b268f24905a69b32ac8/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a
|
276
346
|
body:
|
277
347
|
encoding: US-ASCII
|
278
348
|
string: ''
|
279
349
|
headers:
|
280
350
|
User-Agent:
|
281
|
-
- fog
|
351
|
+
- fog-core/1.32.1
|
352
|
+
Proxy-Connection:
|
353
|
+
- Keep-Alive
|
282
354
|
Content-Type:
|
283
355
|
- application/json
|
284
356
|
Accept:
|
285
357
|
- application/json
|
286
358
|
X-Auth-Token:
|
287
|
-
-
|
359
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
288
360
|
response:
|
289
361
|
status:
|
290
362
|
code: 204
|
291
363
|
message: ''
|
292
364
|
headers:
|
293
365
|
Date:
|
294
|
-
-
|
366
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
295
367
|
Server:
|
296
368
|
- Apache/2.4.7 (Ubuntu)
|
297
369
|
Vary:
|
298
370
|
- X-Auth-Token
|
299
371
|
X-Openstack-Request-Id:
|
300
|
-
- req-
|
372
|
+
- req-01ad87c7-d556-462a-b66f-506bd4a86e81
|
301
373
|
Content-Length:
|
302
374
|
- '0'
|
375
|
+
X-Cache:
|
376
|
+
- MISS from i056593-vagrant
|
377
|
+
X-Cache-Lookup:
|
378
|
+
- MISS from i056593-vagrant:3128
|
379
|
+
Via:
|
380
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
381
|
+
Connection:
|
382
|
+
- keep-alive
|
303
383
|
body:
|
304
|
-
encoding:
|
384
|
+
encoding: UTF-8
|
305
385
|
string: ''
|
306
386
|
http_version:
|
307
|
-
recorded_at:
|
387
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
308
388
|
- request:
|
309
389
|
method: get
|
310
|
-
uri: http://
|
390
|
+
uri: http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects
|
311
391
|
body:
|
312
392
|
encoding: US-ASCII
|
313
393
|
string: ''
|
314
394
|
headers:
|
315
395
|
User-Agent:
|
316
|
-
- fog
|
396
|
+
- fog-core/1.32.1
|
397
|
+
Proxy-Connection:
|
398
|
+
- Keep-Alive
|
317
399
|
Content-Type:
|
318
400
|
- application/json
|
319
401
|
Accept:
|
320
402
|
- application/json
|
321
403
|
X-Auth-Token:
|
322
|
-
-
|
404
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
323
405
|
response:
|
324
406
|
status:
|
325
407
|
code: 200
|
326
408
|
message: ''
|
327
409
|
headers:
|
328
410
|
Date:
|
329
|
-
-
|
411
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
330
412
|
Server:
|
331
413
|
- Apache/2.4.7 (Ubuntu)
|
332
414
|
Vary:
|
333
415
|
- X-Auth-Token
|
334
416
|
X-Openstack-Request-Id:
|
335
|
-
- req-
|
417
|
+
- req-e1113831-408b-45b7-98d8-504e6b00ffc0
|
336
418
|
Content-Length:
|
337
|
-
- '
|
419
|
+
- '146'
|
338
420
|
Content-Type:
|
339
421
|
- application/json
|
422
|
+
X-Cache:
|
423
|
+
- MISS from i056593-vagrant
|
424
|
+
X-Cache-Lookup:
|
425
|
+
- MISS from i056593-vagrant:3128
|
426
|
+
Via:
|
427
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
428
|
+
Connection:
|
429
|
+
- keep-alive
|
340
430
|
body:
|
341
|
-
encoding:
|
342
|
-
string:
|
431
|
+
encoding: UTF-8
|
432
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects",
|
343
433
|
"previous": null, "next": null}, "projects": []}'
|
344
434
|
http_version:
|
345
|
-
recorded_at:
|
435
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
346
436
|
- request:
|
347
437
|
method: get
|
348
|
-
uri: http://
|
438
|
+
uri: http://10.97.17.84:35357/v3/role_assignments?effective=true&scope.project.id=f633bd1df1f74a53b85a003b0b1c5a16&user.id=0b4fb7d6f0cb4d93a2ad541ca8fad29a
|
349
439
|
body:
|
350
440
|
encoding: US-ASCII
|
351
441
|
string: ''
|
352
442
|
headers:
|
353
443
|
User-Agent:
|
354
|
-
- fog
|
444
|
+
- fog-core/1.32.1
|
445
|
+
Proxy-Connection:
|
446
|
+
- Keep-Alive
|
355
447
|
Content-Type:
|
356
448
|
- application/json
|
357
449
|
Accept:
|
358
450
|
- application/json
|
359
451
|
X-Auth-Token:
|
360
|
-
-
|
452
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
361
453
|
response:
|
362
454
|
status:
|
363
455
|
code: 200
|
364
456
|
message: ''
|
365
457
|
headers:
|
366
458
|
Date:
|
367
|
-
-
|
459
|
+
- Fri, 02 Oct 2015 11:41:39 GMT
|
368
460
|
Server:
|
369
461
|
- Apache/2.4.7 (Ubuntu)
|
370
462
|
Vary:
|
371
463
|
- X-Auth-Token
|
372
464
|
X-Openstack-Request-Id:
|
373
|
-
- req-
|
465
|
+
- req-4c53ac41-0be5-466f-a4c2-cf2d3c31c29b
|
374
466
|
Content-Length:
|
375
|
-
- '
|
467
|
+
- '229'
|
376
468
|
Content-Type:
|
377
469
|
- application/json
|
470
|
+
X-Cache:
|
471
|
+
- MISS from i056593-vagrant
|
472
|
+
X-Cache-Lookup:
|
473
|
+
- MISS from i056593-vagrant:3128
|
474
|
+
Via:
|
475
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
476
|
+
Connection:
|
477
|
+
- keep-alive
|
378
478
|
body:
|
379
|
-
encoding:
|
380
|
-
string:
|
479
|
+
encoding: UTF-8
|
480
|
+
string: '{"role_assignments": [], "links": {"self": "http://10.97.17.84:35357/v3/role_assignments?effective=true&scope.project.id=f633bd1df1f74a53b85a003b0b1c5a16&user.id=0b4fb7d6f0cb4d93a2ad541ca8fad29a",
|
381
481
|
"previous": null, "next": null}}'
|
382
482
|
http_version:
|
383
|
-
recorded_at:
|
483
|
+
recorded_at: Fri, 02 Oct 2015 11:41:27 GMT
|
384
484
|
- request:
|
385
485
|
method: get
|
386
|
-
uri: http://
|
486
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles
|
387
487
|
body:
|
388
488
|
encoding: US-ASCII
|
389
489
|
string: ''
|
390
490
|
headers:
|
391
491
|
User-Agent:
|
392
|
-
- fog
|
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: 200
|
402
504
|
message: ''
|
403
505
|
headers:
|
404
506
|
Date:
|
405
|
-
-
|
507
|
+
- Fri, 02 Oct 2015 11:41:39 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-f1c349b7-336d-4595-8c43-f11f8412f803
|
412
514
|
Content-Length:
|
413
|
-
- '
|
515
|
+
- '182'
|
414
516
|
Content-Type:
|
415
517
|
- application/json
|
518
|
+
X-Cache:
|
519
|
+
- MISS from i056593-vagrant
|
520
|
+
X-Cache-Lookup:
|
521
|
+
- MISS from i056593-vagrant:3128
|
522
|
+
Via:
|
523
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
524
|
+
Connection:
|
525
|
+
- keep-alive
|
416
526
|
body:
|
417
|
-
encoding:
|
418
|
-
string:
|
527
|
+
encoding: UTF-8
|
528
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles",
|
419
529
|
"previous": null, "next": null}, "roles": []}'
|
420
530
|
http_version:
|
421
|
-
recorded_at:
|
531
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
422
532
|
- request:
|
423
533
|
method: put
|
424
|
-
uri: http://
|
534
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles/5b1a88be852f46da95c44cddaa29e562
|
425
535
|
body:
|
426
536
|
encoding: US-ASCII
|
427
537
|
string: ''
|
428
538
|
headers:
|
429
539
|
User-Agent:
|
430
|
-
- fog
|
540
|
+
- fog-core/1.32.1
|
541
|
+
Proxy-Connection:
|
542
|
+
- Keep-Alive
|
431
543
|
Content-Type:
|
432
544
|
- application/json
|
433
545
|
Accept:
|
434
546
|
- application/json
|
435
547
|
X-Auth-Token:
|
436
|
-
-
|
548
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
437
549
|
response:
|
438
550
|
status:
|
439
551
|
code: 204
|
440
552
|
message: ''
|
441
553
|
headers:
|
442
554
|
Date:
|
443
|
-
-
|
555
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
444
556
|
Server:
|
445
557
|
- Apache/2.4.7 (Ubuntu)
|
446
558
|
Vary:
|
447
559
|
- X-Auth-Token
|
448
560
|
X-Openstack-Request-Id:
|
449
|
-
- req-
|
561
|
+
- req-a64ff6db-63a5-47c8-a51c-a9b384b579c2
|
450
562
|
Content-Length:
|
451
563
|
- '0'
|
564
|
+
X-Cache:
|
565
|
+
- MISS from i056593-vagrant
|
566
|
+
X-Cache-Lookup:
|
567
|
+
- MISS from i056593-vagrant:3128
|
568
|
+
Via:
|
569
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
570
|
+
Connection:
|
571
|
+
- keep-alive
|
452
572
|
body:
|
453
|
-
encoding:
|
573
|
+
encoding: UTF-8
|
454
574
|
string: ''
|
455
575
|
http_version:
|
456
|
-
recorded_at:
|
576
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
457
577
|
- request:
|
458
578
|
method: get
|
459
|
-
uri: http://
|
579
|
+
uri: http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects
|
460
580
|
body:
|
461
581
|
encoding: US-ASCII
|
462
582
|
string: ''
|
463
583
|
headers:
|
464
584
|
User-Agent:
|
465
|
-
- fog
|
585
|
+
- fog-core/1.32.1
|
586
|
+
Proxy-Connection:
|
587
|
+
- Keep-Alive
|
466
588
|
Content-Type:
|
467
589
|
- application/json
|
468
590
|
Accept:
|
469
591
|
- application/json
|
470
592
|
X-Auth-Token:
|
471
|
-
-
|
593
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
472
594
|
response:
|
473
595
|
status:
|
474
596
|
code: 200
|
475
597
|
message: ''
|
476
598
|
headers:
|
477
599
|
Date:
|
478
|
-
-
|
600
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
479
601
|
Server:
|
480
602
|
- Apache/2.4.7 (Ubuntu)
|
481
603
|
Vary:
|
482
604
|
- X-Auth-Token
|
483
605
|
X-Openstack-Request-Id:
|
484
|
-
- req-
|
606
|
+
- req-06ad84ee-e9cd-40d8-a2d4-9d291037909b
|
485
607
|
Content-Length:
|
486
|
-
- '
|
608
|
+
- '381'
|
487
609
|
Content-Type:
|
488
610
|
- application/json
|
611
|
+
X-Cache:
|
612
|
+
- MISS from i056593-vagrant
|
613
|
+
X-Cache-Lookup:
|
614
|
+
- MISS from i056593-vagrant:3128
|
615
|
+
Via:
|
616
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
617
|
+
Connection:
|
618
|
+
- keep-alive
|
489
619
|
body:
|
490
|
-
encoding:
|
491
|
-
string:
|
620
|
+
encoding: UTF-8
|
621
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects",
|
492
622
|
"previous": null, "next": null}, "projects": [{"description": "", "links":
|
493
|
-
{"self": "http://
|
494
|
-
"enabled": true, "id": "
|
623
|
+
{"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16"},
|
624
|
+
"enabled": true, "id": "f633bd1df1f74a53b85a003b0b1c5a16", "parent_id": null,
|
495
625
|
"domain_id": "default", "name": "p-foobar69"}]}'
|
496
626
|
http_version:
|
497
|
-
recorded_at:
|
627
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
498
628
|
- request:
|
499
629
|
method: head
|
500
|
-
uri: http://
|
630
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles/5b1a88be852f46da95c44cddaa29e562
|
501
631
|
body:
|
502
632
|
encoding: US-ASCII
|
503
633
|
string: ''
|
504
634
|
headers:
|
505
635
|
User-Agent:
|
506
|
-
- fog
|
636
|
+
- fog-core/1.32.1
|
637
|
+
Proxy-Connection:
|
638
|
+
- Keep-Alive
|
507
639
|
Content-Type:
|
508
640
|
- application/json
|
509
641
|
Accept:
|
510
642
|
- application/json
|
511
643
|
X-Auth-Token:
|
512
|
-
-
|
644
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
513
645
|
response:
|
514
646
|
status:
|
515
647
|
code: 204
|
516
648
|
message: ''
|
517
649
|
headers:
|
518
650
|
Date:
|
519
|
-
-
|
651
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
520
652
|
Server:
|
521
653
|
- Apache/2.4.7 (Ubuntu)
|
522
654
|
Vary:
|
523
655
|
- X-Auth-Token
|
524
656
|
X-Openstack-Request-Id:
|
525
|
-
- req-
|
657
|
+
- req-c0ccd726-ad80-4b78-9097-a54b174596df
|
658
|
+
X-Cache:
|
659
|
+
- MISS from i056593-vagrant
|
660
|
+
X-Cache-Lookup:
|
661
|
+
- MISS from i056593-vagrant:3128
|
662
|
+
Via:
|
663
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
664
|
+
Connection:
|
665
|
+
- keep-alive
|
526
666
|
body:
|
527
|
-
encoding:
|
667
|
+
encoding: UTF-8
|
528
668
|
string: ''
|
529
669
|
http_version:
|
530
|
-
recorded_at:
|
670
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
531
671
|
- request:
|
532
672
|
method: get
|
533
|
-
uri: http://
|
673
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles
|
534
674
|
body:
|
535
675
|
encoding: US-ASCII
|
536
676
|
string: ''
|
537
677
|
headers:
|
538
678
|
User-Agent:
|
539
|
-
- fog
|
679
|
+
- fog-core/1.32.1
|
680
|
+
Proxy-Connection:
|
681
|
+
- Keep-Alive
|
540
682
|
Content-Type:
|
541
683
|
- application/json
|
542
684
|
Accept:
|
543
685
|
- application/json
|
544
686
|
X-Auth-Token:
|
545
|
-
-
|
687
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
546
688
|
response:
|
547
689
|
status:
|
548
690
|
code: 200
|
549
691
|
message: ''
|
550
692
|
headers:
|
551
693
|
Date:
|
552
|
-
-
|
694
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
553
695
|
Server:
|
554
696
|
- Apache/2.4.7 (Ubuntu)
|
555
697
|
Vary:
|
556
698
|
- X-Auth-Token
|
557
699
|
X-Openstack-Request-Id:
|
558
|
-
- req-
|
700
|
+
- req-804a7a30-88c5-4011-8b5c-82b553f2d5de
|
559
701
|
Content-Length:
|
560
|
-
- '
|
702
|
+
- '330'
|
561
703
|
Content-Type:
|
562
704
|
- application/json
|
705
|
+
X-Cache:
|
706
|
+
- MISS from i056593-vagrant
|
707
|
+
X-Cache-Lookup:
|
708
|
+
- MISS from i056593-vagrant:3128
|
709
|
+
Via:
|
710
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
711
|
+
Connection:
|
712
|
+
- keep-alive
|
563
713
|
body:
|
564
|
-
encoding:
|
565
|
-
string:
|
566
|
-
"previous": null, "next": null}, "roles": [{"id": "
|
567
|
-
"links": {"self": "http://
|
714
|
+
encoding: UTF-8
|
715
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles",
|
716
|
+
"previous": null, "next": null}, "roles": [{"id": "5b1a88be852f46da95c44cddaa29e562",
|
717
|
+
"links": {"self": "http://10.97.17.84:35357/v3/roles/5b1a88be852f46da95c44cddaa29e562"},
|
568
718
|
"name": "baz69"}]}'
|
569
719
|
http_version:
|
570
|
-
recorded_at:
|
720
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
571
721
|
- request:
|
572
722
|
method: delete
|
573
|
-
uri: http://
|
723
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles/5b1a88be852f46da95c44cddaa29e562
|
574
724
|
body:
|
575
725
|
encoding: US-ASCII
|
576
726
|
string: ''
|
577
727
|
headers:
|
578
728
|
User-Agent:
|
579
|
-
- fog
|
729
|
+
- fog-core/1.32.1
|
730
|
+
Proxy-Connection:
|
731
|
+
- Keep-Alive
|
580
732
|
Content-Type:
|
581
733
|
- application/json
|
582
734
|
Accept:
|
583
735
|
- application/json
|
584
736
|
X-Auth-Token:
|
585
|
-
-
|
737
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
586
738
|
response:
|
587
739
|
status:
|
588
740
|
code: 204
|
589
741
|
message: ''
|
590
742
|
headers:
|
591
743
|
Date:
|
592
|
-
-
|
744
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
593
745
|
Server:
|
594
746
|
- Apache/2.4.7 (Ubuntu)
|
595
747
|
Vary:
|
596
748
|
- X-Auth-Token
|
597
749
|
X-Openstack-Request-Id:
|
598
|
-
- req-
|
750
|
+
- req-0a18e2fb-e492-4aec-a52f-6d52b9588eda
|
599
751
|
Content-Length:
|
600
752
|
- '0'
|
753
|
+
X-Cache:
|
754
|
+
- MISS from i056593-vagrant
|
755
|
+
X-Cache-Lookup:
|
756
|
+
- MISS from i056593-vagrant:3128
|
757
|
+
Via:
|
758
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
759
|
+
Connection:
|
760
|
+
- keep-alive
|
601
761
|
body:
|
602
|
-
encoding:
|
762
|
+
encoding: UTF-8
|
603
763
|
string: ''
|
604
764
|
http_version:
|
605
|
-
recorded_at:
|
765
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
606
766
|
- request:
|
607
767
|
method: get
|
608
|
-
uri: http://
|
768
|
+
uri: http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects
|
609
769
|
body:
|
610
770
|
encoding: US-ASCII
|
611
771
|
string: ''
|
612
772
|
headers:
|
613
773
|
User-Agent:
|
614
|
-
- fog
|
774
|
+
- fog-core/1.32.1
|
775
|
+
Proxy-Connection:
|
776
|
+
- Keep-Alive
|
615
777
|
Content-Type:
|
616
778
|
- application/json
|
617
779
|
Accept:
|
618
780
|
- application/json
|
619
781
|
X-Auth-Token:
|
620
|
-
-
|
782
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
621
783
|
response:
|
622
784
|
status:
|
623
785
|
code: 200
|
624
786
|
message: ''
|
625
787
|
headers:
|
626
788
|
Date:
|
627
|
-
-
|
789
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
628
790
|
Server:
|
629
791
|
- Apache/2.4.7 (Ubuntu)
|
630
792
|
Vary:
|
631
793
|
- X-Auth-Token
|
632
794
|
X-Openstack-Request-Id:
|
633
|
-
- req-
|
795
|
+
- req-cb87e10a-762a-4d39-be0c-29912118d1fe
|
634
796
|
Content-Length:
|
635
|
-
- '
|
797
|
+
- '146'
|
636
798
|
Content-Type:
|
637
799
|
- application/json
|
800
|
+
X-Cache:
|
801
|
+
- MISS from i056593-vagrant
|
802
|
+
X-Cache-Lookup:
|
803
|
+
- MISS from i056593-vagrant:3128
|
804
|
+
Via:
|
805
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
806
|
+
Connection:
|
807
|
+
- keep-alive
|
638
808
|
body:
|
639
|
-
encoding:
|
640
|
-
string:
|
809
|
+
encoding: UTF-8
|
810
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects",
|
641
811
|
"previous": null, "next": null}, "projects": []}'
|
642
812
|
http_version:
|
643
|
-
recorded_at:
|
813
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
644
814
|
- request:
|
645
815
|
method: head
|
646
|
-
uri: http://
|
816
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/roles/5b1a88be852f46da95c44cddaa29e562
|
647
817
|
body:
|
648
818
|
encoding: US-ASCII
|
649
819
|
string: ''
|
650
820
|
headers:
|
651
821
|
User-Agent:
|
652
|
-
- fog
|
822
|
+
- fog-core/1.32.1
|
823
|
+
Proxy-Connection:
|
824
|
+
- Keep-Alive
|
653
825
|
Content-Type:
|
654
826
|
- application/json
|
655
827
|
Accept:
|
656
828
|
- application/json
|
657
829
|
X-Auth-Token:
|
658
|
-
-
|
830
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
659
831
|
response:
|
660
832
|
status:
|
661
833
|
code: 404
|
662
834
|
message: ''
|
663
835
|
headers:
|
664
836
|
Date:
|
665
|
-
-
|
837
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
666
838
|
Server:
|
667
839
|
- Apache/2.4.7 (Ubuntu)
|
668
840
|
Vary:
|
669
841
|
- X-Auth-Token
|
670
842
|
X-Openstack-Request-Id:
|
671
|
-
- req-
|
843
|
+
- req-8163329e-3f96-4f89-a80d-88d2e0685dea
|
672
844
|
Content-Length:
|
673
845
|
- '237'
|
674
846
|
Content-Type:
|
675
847
|
- application/json
|
848
|
+
X-Cache:
|
849
|
+
- MISS from i056593-vagrant
|
850
|
+
X-Cache-Lookup:
|
851
|
+
- MISS from i056593-vagrant:3128
|
852
|
+
Via:
|
853
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
854
|
+
Connection:
|
855
|
+
- keep-alive
|
676
856
|
body:
|
677
|
-
encoding:
|
857
|
+
encoding: UTF-8
|
678
858
|
string: ''
|
679
859
|
http_version:
|
680
|
-
recorded_at:
|
860
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
681
861
|
- request:
|
682
862
|
method: get
|
683
|
-
uri: http://
|
863
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles
|
684
864
|
body:
|
685
865
|
encoding: US-ASCII
|
686
866
|
string: ''
|
687
867
|
headers:
|
688
868
|
User-Agent:
|
689
|
-
- fog
|
869
|
+
- fog-core/1.32.1
|
870
|
+
Proxy-Connection:
|
871
|
+
- Keep-Alive
|
690
872
|
Content-Type:
|
691
873
|
- application/json
|
692
874
|
Accept:
|
693
875
|
- application/json
|
694
876
|
X-Auth-Token:
|
695
|
-
-
|
877
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
696
878
|
response:
|
697
879
|
status:
|
698
880
|
code: 200
|
699
881
|
message: ''
|
700
882
|
headers:
|
701
883
|
Date:
|
702
|
-
-
|
884
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
703
885
|
Server:
|
704
886
|
- Apache/2.4.7 (Ubuntu)
|
705
887
|
Vary:
|
706
888
|
- X-Auth-Token
|
707
889
|
X-Openstack-Request-Id:
|
708
|
-
- req-
|
890
|
+
- req-acabd6b7-5dd1-4630-86db-cc13a2dea06b
|
709
891
|
Content-Length:
|
710
|
-
- '
|
892
|
+
- '183'
|
711
893
|
Content-Type:
|
712
894
|
- application/json
|
895
|
+
X-Cache:
|
896
|
+
- MISS from i056593-vagrant
|
897
|
+
X-Cache-Lookup:
|
898
|
+
- MISS from i056593-vagrant:3128
|
899
|
+
Via:
|
900
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
901
|
+
Connection:
|
902
|
+
- keep-alive
|
713
903
|
body:
|
714
|
-
encoding:
|
715
|
-
string:
|
904
|
+
encoding: UTF-8
|
905
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles",
|
716
906
|
"previous": null, "next": null}, "roles": []}'
|
717
907
|
http_version:
|
718
|
-
recorded_at:
|
908
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
719
909
|
- request:
|
720
910
|
method: get
|
721
|
-
uri: http://
|
911
|
+
uri: http://10.97.17.84:35357/v3/role_assignments?effective=true&scope.project.id=f633bd1df1f74a53b85a003b0b1c5a16&user.id=0b4fb7d6f0cb4d93a2ad541ca8fad29a
|
722
912
|
body:
|
723
913
|
encoding: US-ASCII
|
724
914
|
string: ''
|
725
915
|
headers:
|
726
916
|
User-Agent:
|
727
|
-
- fog
|
917
|
+
- fog-core/1.32.1
|
918
|
+
Proxy-Connection:
|
919
|
+
- Keep-Alive
|
728
920
|
Content-Type:
|
729
921
|
- application/json
|
730
922
|
Accept:
|
731
923
|
- application/json
|
732
924
|
X-Auth-Token:
|
733
|
-
-
|
925
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
734
926
|
response:
|
735
927
|
status:
|
736
928
|
code: 200
|
737
929
|
message: ''
|
738
930
|
headers:
|
739
931
|
Date:
|
740
|
-
-
|
932
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
741
933
|
Server:
|
742
934
|
- Apache/2.4.7 (Ubuntu)
|
743
935
|
Vary:
|
744
936
|
- X-Auth-Token
|
745
937
|
X-Openstack-Request-Id:
|
746
|
-
- req-
|
938
|
+
- req-32f2c5df-b458-4295-a75a-0994154a3d25
|
747
939
|
Content-Length:
|
748
|
-
- '
|
940
|
+
- '229'
|
749
941
|
Content-Type:
|
750
942
|
- application/json
|
943
|
+
X-Cache:
|
944
|
+
- MISS from i056593-vagrant
|
945
|
+
X-Cache-Lookup:
|
946
|
+
- MISS from i056593-vagrant:3128
|
947
|
+
Via:
|
948
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
949
|
+
Connection:
|
950
|
+
- keep-alive
|
751
951
|
body:
|
752
|
-
encoding:
|
753
|
-
string:
|
952
|
+
encoding: UTF-8
|
953
|
+
string: '{"role_assignments": [], "links": {"self": "http://10.97.17.84:35357/v3/role_assignments?effective=true&scope.project.id=f633bd1df1f74a53b85a003b0b1c5a16&user.id=0b4fb7d6f0cb4d93a2ad541ca8fad29a",
|
754
954
|
"previous": null, "next": null}}'
|
755
955
|
http_version:
|
756
|
-
recorded_at:
|
956
|
+
recorded_at: Fri, 02 Oct 2015 11:41:28 GMT
|
757
957
|
- request:
|
758
958
|
method: put
|
759
|
-
uri: http://
|
959
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles/5b1a88be852f46da95c44cddaa29e562
|
760
960
|
body:
|
761
961
|
encoding: US-ASCII
|
762
962
|
string: ''
|
763
963
|
headers:
|
764
964
|
User-Agent:
|
765
|
-
- fog
|
965
|
+
- fog-core/1.32.1
|
966
|
+
Proxy-Connection:
|
967
|
+
- Keep-Alive
|
766
968
|
Content-Type:
|
767
969
|
- application/json
|
768
970
|
Accept:
|
769
971
|
- application/json
|
770
972
|
X-Auth-Token:
|
771
|
-
-
|
973
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
772
974
|
response:
|
773
975
|
status:
|
774
976
|
code: 204
|
775
977
|
message: ''
|
776
978
|
headers:
|
777
979
|
Date:
|
778
|
-
-
|
980
|
+
- Fri, 02 Oct 2015 11:41:40 GMT
|
779
981
|
Server:
|
780
982
|
- Apache/2.4.7 (Ubuntu)
|
781
983
|
Vary:
|
782
984
|
- X-Auth-Token
|
783
985
|
X-Openstack-Request-Id:
|
784
|
-
- req-
|
986
|
+
- req-ce3b1e05-2727-4685-8fc6-ee84d8e977e5
|
785
987
|
Content-Length:
|
786
988
|
- '0'
|
989
|
+
X-Cache:
|
990
|
+
- MISS from i056593-vagrant
|
991
|
+
X-Cache-Lookup:
|
992
|
+
- MISS from i056593-vagrant:3128
|
993
|
+
Via:
|
994
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
995
|
+
Connection:
|
996
|
+
- keep-alive
|
787
997
|
body:
|
788
|
-
encoding:
|
998
|
+
encoding: UTF-8
|
789
999
|
string: ''
|
790
1000
|
http_version:
|
791
|
-
recorded_at:
|
1001
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
792
1002
|
- request:
|
793
1003
|
method: head
|
794
|
-
uri: http://
|
1004
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles/5b1a88be852f46da95c44cddaa29e562
|
795
1005
|
body:
|
796
1006
|
encoding: US-ASCII
|
797
1007
|
string: ''
|
798
1008
|
headers:
|
799
1009
|
User-Agent:
|
800
|
-
- fog
|
1010
|
+
- fog-core/1.32.1
|
1011
|
+
Proxy-Connection:
|
1012
|
+
- Keep-Alive
|
801
1013
|
Content-Type:
|
802
1014
|
- application/json
|
803
1015
|
Accept:
|
804
1016
|
- application/json
|
805
1017
|
X-Auth-Token:
|
806
|
-
-
|
1018
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
807
1019
|
response:
|
808
1020
|
status:
|
809
1021
|
code: 204
|
810
1022
|
message: ''
|
811
1023
|
headers:
|
812
1024
|
Date:
|
813
|
-
-
|
1025
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
814
1026
|
Server:
|
815
1027
|
- Apache/2.4.7 (Ubuntu)
|
816
1028
|
Vary:
|
817
1029
|
- X-Auth-Token
|
818
1030
|
X-Openstack-Request-Id:
|
819
|
-
- req-
|
1031
|
+
- req-70883b99-1292-492a-8d11-ad6f36e72aa0
|
1032
|
+
X-Cache:
|
1033
|
+
- MISS from i056593-vagrant
|
1034
|
+
X-Cache-Lookup:
|
1035
|
+
- MISS from i056593-vagrant:3128
|
1036
|
+
Via:
|
1037
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1038
|
+
Connection:
|
1039
|
+
- keep-alive
|
820
1040
|
body:
|
821
|
-
encoding:
|
1041
|
+
encoding: UTF-8
|
822
1042
|
string: ''
|
823
1043
|
http_version:
|
824
|
-
recorded_at:
|
1044
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
825
1045
|
- request:
|
826
1046
|
method: get
|
827
|
-
uri: http://
|
1047
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles
|
828
1048
|
body:
|
829
1049
|
encoding: US-ASCII
|
830
1050
|
string: ''
|
831
1051
|
headers:
|
832
1052
|
User-Agent:
|
833
|
-
- fog
|
1053
|
+
- fog-core/1.32.1
|
1054
|
+
Proxy-Connection:
|
1055
|
+
- Keep-Alive
|
834
1056
|
Content-Type:
|
835
1057
|
- application/json
|
836
1058
|
Accept:
|
837
1059
|
- application/json
|
838
1060
|
X-Auth-Token:
|
839
|
-
-
|
1061
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
840
1062
|
response:
|
841
1063
|
status:
|
842
1064
|
code: 200
|
843
1065
|
message: ''
|
844
1066
|
headers:
|
845
1067
|
Date:
|
846
|
-
-
|
1068
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
847
1069
|
Server:
|
848
1070
|
- Apache/2.4.7 (Ubuntu)
|
849
1071
|
Vary:
|
850
1072
|
- X-Auth-Token
|
851
1073
|
X-Openstack-Request-Id:
|
852
|
-
- req-
|
1074
|
+
- req-f8cfd7c5-072a-4fec-ad46-ad71b9fe7de4
|
853
1075
|
Content-Length:
|
854
|
-
- '
|
1076
|
+
- '331'
|
855
1077
|
Content-Type:
|
856
1078
|
- application/json
|
1079
|
+
X-Cache:
|
1080
|
+
- MISS from i056593-vagrant
|
1081
|
+
X-Cache-Lookup:
|
1082
|
+
- MISS from i056593-vagrant:3128
|
1083
|
+
Via:
|
1084
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1085
|
+
Connection:
|
1086
|
+
- keep-alive
|
857
1087
|
body:
|
858
|
-
encoding:
|
859
|
-
string:
|
860
|
-
"previous": null, "next": null}, "roles": [{"id": "
|
861
|
-
"links": {"self": "http://
|
1088
|
+
encoding: UTF-8
|
1089
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles",
|
1090
|
+
"previous": null, "next": null}, "roles": [{"id": "5b1a88be852f46da95c44cddaa29e562",
|
1091
|
+
"links": {"self": "http://10.97.17.84:35357/v3/roles/5b1a88be852f46da95c44cddaa29e562"},
|
862
1092
|
"name": "baz69"}]}'
|
863
1093
|
http_version:
|
864
|
-
recorded_at:
|
1094
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
865
1095
|
- request:
|
866
1096
|
method: get
|
867
|
-
uri: http://
|
1097
|
+
uri: http://10.97.17.84:35357/v3/role_assignments?effective=true&scope.project.id=f633bd1df1f74a53b85a003b0b1c5a16&user.id=0b4fb7d6f0cb4d93a2ad541ca8fad29a
|
868
1098
|
body:
|
869
1099
|
encoding: US-ASCII
|
870
1100
|
string: ''
|
871
1101
|
headers:
|
872
1102
|
User-Agent:
|
873
|
-
- fog
|
1103
|
+
- fog-core/1.32.1
|
1104
|
+
Proxy-Connection:
|
1105
|
+
- Keep-Alive
|
874
1106
|
Content-Type:
|
875
1107
|
- application/json
|
876
1108
|
Accept:
|
877
1109
|
- application/json
|
878
1110
|
X-Auth-Token:
|
879
|
-
-
|
1111
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
880
1112
|
response:
|
881
1113
|
status:
|
882
1114
|
code: 200
|
883
1115
|
message: ''
|
884
1116
|
headers:
|
885
1117
|
Date:
|
886
|
-
-
|
1118
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
887
1119
|
Server:
|
888
1120
|
- Apache/2.4.7 (Ubuntu)
|
889
1121
|
Vary:
|
890
1122
|
- X-Auth-Token
|
891
1123
|
X-Openstack-Request-Id:
|
892
|
-
- req-
|
1124
|
+
- req-4d761fd1-aec7-476e-904b-6c61fda377e9
|
893
1125
|
Content-Length:
|
894
|
-
- '
|
1126
|
+
- '700'
|
895
1127
|
Content-Type:
|
896
1128
|
- application/json
|
1129
|
+
X-Cache:
|
1130
|
+
- MISS from i056593-vagrant
|
1131
|
+
X-Cache-Lookup:
|
1132
|
+
- MISS from i056593-vagrant:3128
|
1133
|
+
Via:
|
1134
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1135
|
+
Connection:
|
1136
|
+
- keep-alive
|
897
1137
|
body:
|
898
|
-
encoding:
|
899
|
-
string:
|
900
|
-
"role": {"id": "
|
901
|
-
"links": {"assignment": "http://
|
902
|
-
"membership": "http://
|
903
|
-
"links": {"self": "http://
|
1138
|
+
encoding: UTF-8
|
1139
|
+
string: '{"role_assignments": [{"scope": {"project": {"id": "f633bd1df1f74a53b85a003b0b1c5a16"}},
|
1140
|
+
"role": {"id": "5b1a88be852f46da95c44cddaa29e562"}, "user": {"id": "0b4fb7d6f0cb4d93a2ad541ca8fad29a"},
|
1141
|
+
"links": {"assignment": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles/5b1a88be852f46da95c44cddaa29e562",
|
1142
|
+
"membership": "http://10.97.17.84:35357/v3/groups/653527097d074b268f24905a69b32ac8/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a"}}],
|
1143
|
+
"links": {"self": "http://10.97.17.84:35357/v3/role_assignments?effective=true&scope.project.id=f633bd1df1f74a53b85a003b0b1c5a16&user.id=0b4fb7d6f0cb4d93a2ad541ca8fad29a",
|
904
1144
|
"previous": null, "next": null}}'
|
905
1145
|
http_version:
|
906
|
-
recorded_at:
|
1146
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
907
1147
|
- request:
|
908
1148
|
method: get
|
909
|
-
uri: http://
|
1149
|
+
uri: http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects
|
910
1150
|
body:
|
911
1151
|
encoding: US-ASCII
|
912
1152
|
string: ''
|
913
1153
|
headers:
|
914
1154
|
User-Agent:
|
915
|
-
- fog
|
1155
|
+
- fog-core/1.32.1
|
1156
|
+
Proxy-Connection:
|
1157
|
+
- Keep-Alive
|
916
1158
|
Content-Type:
|
917
1159
|
- application/json
|
918
1160
|
Accept:
|
919
1161
|
- application/json
|
920
1162
|
X-Auth-Token:
|
921
|
-
-
|
1163
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
922
1164
|
response:
|
923
1165
|
status:
|
924
1166
|
code: 200
|
925
1167
|
message: ''
|
926
1168
|
headers:
|
927
1169
|
Date:
|
928
|
-
-
|
1170
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
929
1171
|
Server:
|
930
1172
|
- Apache/2.4.7 (Ubuntu)
|
931
1173
|
Vary:
|
932
1174
|
- X-Auth-Token
|
933
1175
|
X-Openstack-Request-Id:
|
934
|
-
- req-
|
1176
|
+
- req-8e57bed9-6d9a-4762-980d-89d8c956ce0c
|
935
1177
|
Content-Length:
|
936
|
-
- '
|
1178
|
+
- '381'
|
937
1179
|
Content-Type:
|
938
1180
|
- application/json
|
1181
|
+
X-Cache:
|
1182
|
+
- MISS from i056593-vagrant
|
1183
|
+
X-Cache-Lookup:
|
1184
|
+
- MISS from i056593-vagrant:3128
|
1185
|
+
Via:
|
1186
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1187
|
+
Connection:
|
1188
|
+
- keep-alive
|
939
1189
|
body:
|
940
|
-
encoding:
|
941
|
-
string:
|
1190
|
+
encoding: UTF-8
|
1191
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects",
|
942
1192
|
"previous": null, "next": null}, "projects": [{"description": "", "links":
|
943
|
-
{"self": "http://
|
944
|
-
"enabled": true, "id": "
|
1193
|
+
{"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16"},
|
1194
|
+
"enabled": true, "id": "f633bd1df1f74a53b85a003b0b1c5a16", "parent_id": null,
|
945
1195
|
"domain_id": "default", "name": "p-foobar69"}]}'
|
946
1196
|
http_version:
|
947
|
-
recorded_at:
|
1197
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
948
1198
|
- request:
|
949
1199
|
method: delete
|
950
|
-
uri: http://
|
1200
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles/5b1a88be852f46da95c44cddaa29e562
|
951
1201
|
body:
|
952
1202
|
encoding: US-ASCII
|
953
1203
|
string: ''
|
954
1204
|
headers:
|
955
1205
|
User-Agent:
|
956
|
-
- fog
|
1206
|
+
- fog-core/1.32.1
|
1207
|
+
Proxy-Connection:
|
1208
|
+
- Keep-Alive
|
957
1209
|
Content-Type:
|
958
1210
|
- application/json
|
959
1211
|
Accept:
|
960
1212
|
- application/json
|
961
1213
|
X-Auth-Token:
|
962
|
-
-
|
1214
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
963
1215
|
response:
|
964
1216
|
status:
|
965
1217
|
code: 204
|
966
1218
|
message: ''
|
967
1219
|
headers:
|
968
1220
|
Date:
|
969
|
-
-
|
1221
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
970
1222
|
Server:
|
971
1223
|
- Apache/2.4.7 (Ubuntu)
|
972
1224
|
Vary:
|
973
1225
|
- X-Auth-Token
|
974
1226
|
X-Openstack-Request-Id:
|
975
|
-
- req-
|
1227
|
+
- req-561059ac-9cbe-4904-8949-4a7ccc543114
|
976
1228
|
Content-Length:
|
977
1229
|
- '0'
|
1230
|
+
X-Cache:
|
1231
|
+
- MISS from i056593-vagrant
|
1232
|
+
X-Cache-Lookup:
|
1233
|
+
- MISS from i056593-vagrant:3128
|
1234
|
+
Via:
|
1235
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1236
|
+
Connection:
|
1237
|
+
- keep-alive
|
978
1238
|
body:
|
979
|
-
encoding:
|
1239
|
+
encoding: UTF-8
|
980
1240
|
string: ''
|
981
1241
|
http_version:
|
982
|
-
recorded_at:
|
1242
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
983
1243
|
- request:
|
984
1244
|
method: get
|
985
|
-
uri: http://
|
1245
|
+
uri: http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects
|
986
1246
|
body:
|
987
1247
|
encoding: US-ASCII
|
988
1248
|
string: ''
|
989
1249
|
headers:
|
990
1250
|
User-Agent:
|
991
|
-
- fog
|
1251
|
+
- fog-core/1.32.1
|
1252
|
+
Proxy-Connection:
|
1253
|
+
- Keep-Alive
|
992
1254
|
Content-Type:
|
993
1255
|
- application/json
|
994
1256
|
Accept:
|
995
1257
|
- application/json
|
996
1258
|
X-Auth-Token:
|
997
|
-
-
|
1259
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
998
1260
|
response:
|
999
1261
|
status:
|
1000
1262
|
code: 200
|
1001
1263
|
message: ''
|
1002
1264
|
headers:
|
1003
1265
|
Date:
|
1004
|
-
-
|
1266
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
1005
1267
|
Server:
|
1006
1268
|
- Apache/2.4.7 (Ubuntu)
|
1007
1269
|
Vary:
|
1008
1270
|
- X-Auth-Token
|
1009
1271
|
X-Openstack-Request-Id:
|
1010
|
-
- req-
|
1272
|
+
- req-554bd344-9fa3-45d0-8e58-0994974b726a
|
1011
1273
|
Content-Length:
|
1012
|
-
- '
|
1274
|
+
- '146'
|
1013
1275
|
Content-Type:
|
1014
1276
|
- application/json
|
1277
|
+
X-Cache:
|
1278
|
+
- MISS from i056593-vagrant
|
1279
|
+
X-Cache-Lookup:
|
1280
|
+
- MISS from i056593-vagrant:3128
|
1281
|
+
Via:
|
1282
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1283
|
+
Connection:
|
1284
|
+
- keep-alive
|
1015
1285
|
body:
|
1016
|
-
encoding:
|
1017
|
-
string:
|
1286
|
+
encoding: UTF-8
|
1287
|
+
string: '{"links": {"self": "http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a/projects",
|
1018
1288
|
"previous": null, "next": null}, "projects": []}'
|
1019
1289
|
http_version:
|
1020
|
-
recorded_at:
|
1290
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
1021
1291
|
- request:
|
1022
1292
|
method: head
|
1023
|
-
uri: http://
|
1293
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16/groups/653527097d074b268f24905a69b32ac8/roles/5b1a88be852f46da95c44cddaa29e562
|
1024
1294
|
body:
|
1025
1295
|
encoding: US-ASCII
|
1026
1296
|
string: ''
|
1027
1297
|
headers:
|
1028
1298
|
User-Agent:
|
1029
|
-
- fog
|
1299
|
+
- fog-core/1.32.1
|
1300
|
+
Proxy-Connection:
|
1301
|
+
- Keep-Alive
|
1030
1302
|
Content-Type:
|
1031
1303
|
- application/json
|
1032
1304
|
Accept:
|
1033
1305
|
- application/json
|
1034
1306
|
X-Auth-Token:
|
1035
|
-
-
|
1307
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
1036
1308
|
response:
|
1037
1309
|
status:
|
1038
1310
|
code: 404
|
1039
1311
|
message: ''
|
1040
1312
|
headers:
|
1041
1313
|
Date:
|
1042
|
-
-
|
1314
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
1043
1315
|
Server:
|
1044
1316
|
- Apache/2.4.7 (Ubuntu)
|
1045
1317
|
Vary:
|
1046
1318
|
- X-Auth-Token
|
1047
1319
|
X-Openstack-Request-Id:
|
1048
|
-
- req-
|
1320
|
+
- req-4628686e-3c9e-4f42-ae0d-27d97333148f
|
1049
1321
|
Content-Length:
|
1050
1322
|
- '237'
|
1051
1323
|
Content-Type:
|
1052
1324
|
- application/json
|
1325
|
+
X-Cache:
|
1326
|
+
- MISS from i056593-vagrant
|
1327
|
+
X-Cache-Lookup:
|
1328
|
+
- MISS from i056593-vagrant:3128
|
1329
|
+
Via:
|
1330
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1331
|
+
Connection:
|
1332
|
+
- keep-alive
|
1053
1333
|
body:
|
1054
|
-
encoding:
|
1334
|
+
encoding: UTF-8
|
1055
1335
|
string: ''
|
1056
1336
|
http_version:
|
1057
|
-
recorded_at:
|
1337
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
1058
1338
|
- request:
|
1059
1339
|
method: delete
|
1060
|
-
uri: http://
|
1340
|
+
uri: http://10.97.17.84:35357/v3/users/0b4fb7d6f0cb4d93a2ad541ca8fad29a
|
1061
1341
|
body:
|
1062
1342
|
encoding: US-ASCII
|
1063
1343
|
string: ''
|
1064
1344
|
headers:
|
1065
1345
|
User-Agent:
|
1066
|
-
- fog
|
1346
|
+
- fog-core/1.32.1
|
1347
|
+
Proxy-Connection:
|
1348
|
+
- Keep-Alive
|
1067
1349
|
Content-Type:
|
1068
1350
|
- application/json
|
1069
1351
|
Accept:
|
1070
1352
|
- application/json
|
1071
1353
|
X-Auth-Token:
|
1072
|
-
-
|
1354
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
1073
1355
|
response:
|
1074
1356
|
status:
|
1075
1357
|
code: 204
|
1076
1358
|
message: ''
|
1077
1359
|
headers:
|
1078
1360
|
Date:
|
1079
|
-
-
|
1361
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
1080
1362
|
Server:
|
1081
1363
|
- Apache/2.4.7 (Ubuntu)
|
1082
1364
|
Vary:
|
1083
1365
|
- X-Auth-Token
|
1084
1366
|
X-Openstack-Request-Id:
|
1085
|
-
- req-
|
1367
|
+
- req-7d494b71-bb21-4d1a-98c3-3121a4fd05be
|
1086
1368
|
Content-Length:
|
1087
1369
|
- '0'
|
1370
|
+
X-Cache:
|
1371
|
+
- MISS from i056593-vagrant
|
1372
|
+
X-Cache-Lookup:
|
1373
|
+
- MISS from i056593-vagrant:3128
|
1374
|
+
Via:
|
1375
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1376
|
+
Connection:
|
1377
|
+
- keep-alive
|
1088
1378
|
body:
|
1089
|
-
encoding:
|
1379
|
+
encoding: UTF-8
|
1090
1380
|
string: ''
|
1091
1381
|
http_version:
|
1092
|
-
recorded_at:
|
1382
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
1093
1383
|
- request:
|
1094
1384
|
method: delete
|
1095
|
-
uri: http://
|
1385
|
+
uri: http://10.97.17.84:35357/v3/groups/653527097d074b268f24905a69b32ac8
|
1096
1386
|
body:
|
1097
1387
|
encoding: US-ASCII
|
1098
1388
|
string: ''
|
1099
1389
|
headers:
|
1100
1390
|
User-Agent:
|
1101
|
-
- fog
|
1391
|
+
- fog-core/1.32.1
|
1392
|
+
Proxy-Connection:
|
1393
|
+
- Keep-Alive
|
1102
1394
|
Content-Type:
|
1103
1395
|
- application/json
|
1104
1396
|
Accept:
|
1105
1397
|
- application/json
|
1106
1398
|
X-Auth-Token:
|
1107
|
-
-
|
1399
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
1108
1400
|
response:
|
1109
1401
|
status:
|
1110
1402
|
code: 204
|
1111
1403
|
message: ''
|
1112
1404
|
headers:
|
1113
1405
|
Date:
|
1114
|
-
-
|
1406
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
1115
1407
|
Server:
|
1116
1408
|
- Apache/2.4.7 (Ubuntu)
|
1117
1409
|
Vary:
|
1118
1410
|
- X-Auth-Token
|
1119
1411
|
X-Openstack-Request-Id:
|
1120
|
-
- req-
|
1412
|
+
- req-67575ae6-7f86-4988-b21c-f93bd4100b17
|
1121
1413
|
Content-Length:
|
1122
1414
|
- '0'
|
1415
|
+
X-Cache:
|
1416
|
+
- MISS from i056593-vagrant
|
1417
|
+
X-Cache-Lookup:
|
1418
|
+
- MISS from i056593-vagrant:3128
|
1419
|
+
Via:
|
1420
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1421
|
+
Connection:
|
1422
|
+
- keep-alive
|
1123
1423
|
body:
|
1124
|
-
encoding:
|
1424
|
+
encoding: UTF-8
|
1125
1425
|
string: ''
|
1126
1426
|
http_version:
|
1127
|
-
recorded_at:
|
1427
|
+
recorded_at: Fri, 02 Oct 2015 11:41:29 GMT
|
1128
1428
|
- request:
|
1129
1429
|
method: delete
|
1130
|
-
uri: http://
|
1430
|
+
uri: http://10.97.17.84:35357/v3/roles/5b1a88be852f46da95c44cddaa29e562
|
1131
1431
|
body:
|
1132
1432
|
encoding: US-ASCII
|
1133
1433
|
string: ''
|
1134
1434
|
headers:
|
1135
1435
|
User-Agent:
|
1136
|
-
- fog
|
1436
|
+
- fog-core/1.32.1
|
1437
|
+
Proxy-Connection:
|
1438
|
+
- Keep-Alive
|
1137
1439
|
Content-Type:
|
1138
1440
|
- application/json
|
1139
1441
|
Accept:
|
1140
1442
|
- application/json
|
1141
1443
|
X-Auth-Token:
|
1142
|
-
-
|
1444
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
1143
1445
|
response:
|
1144
1446
|
status:
|
1145
1447
|
code: 204
|
1146
1448
|
message: ''
|
1147
1449
|
headers:
|
1148
1450
|
Date:
|
1149
|
-
-
|
1451
|
+
- Fri, 02 Oct 2015 11:41:41 GMT
|
1150
1452
|
Server:
|
1151
1453
|
- Apache/2.4.7 (Ubuntu)
|
1152
1454
|
Vary:
|
1153
1455
|
- X-Auth-Token
|
1154
1456
|
X-Openstack-Request-Id:
|
1155
|
-
- req-
|
1457
|
+
- req-fb6cca88-59f0-4f37-96dc-fa0490115b65
|
1156
1458
|
Content-Length:
|
1157
1459
|
- '0'
|
1460
|
+
X-Cache:
|
1461
|
+
- MISS from i056593-vagrant
|
1462
|
+
X-Cache-Lookup:
|
1463
|
+
- MISS from i056593-vagrant:3128
|
1464
|
+
Via:
|
1465
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1466
|
+
Connection:
|
1467
|
+
- keep-alive
|
1158
1468
|
body:
|
1159
|
-
encoding:
|
1469
|
+
encoding: UTF-8
|
1160
1470
|
string: ''
|
1161
1471
|
http_version:
|
1162
|
-
recorded_at:
|
1472
|
+
recorded_at: Fri, 02 Oct 2015 11:41:30 GMT
|
1163
1473
|
- request:
|
1164
1474
|
method: patch
|
1165
|
-
uri: http://
|
1475
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16
|
1166
1476
|
body:
|
1167
1477
|
encoding: UTF-8
|
1168
|
-
string:
|
1478
|
+
string: '{"project":{"enabled":false}}'
|
1169
1479
|
headers:
|
1170
1480
|
User-Agent:
|
1171
|
-
- fog
|
1481
|
+
- fog-core/1.32.1
|
1482
|
+
Proxy-Connection:
|
1483
|
+
- Keep-Alive
|
1172
1484
|
Content-Type:
|
1173
1485
|
- application/json
|
1174
1486
|
Accept:
|
1175
1487
|
- application/json
|
1176
1488
|
X-Auth-Token:
|
1177
|
-
-
|
1489
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
1178
1490
|
response:
|
1179
1491
|
status:
|
1180
1492
|
code: 200
|
1181
1493
|
message: ''
|
1182
1494
|
headers:
|
1183
1495
|
Date:
|
1184
|
-
-
|
1496
|
+
- Fri, 02 Oct 2015 11:41:42 GMT
|
1185
1497
|
Server:
|
1186
1498
|
- Apache/2.4.7 (Ubuntu)
|
1187
1499
|
Vary:
|
1188
1500
|
- X-Auth-Token
|
1189
1501
|
X-Openstack-Request-Id:
|
1190
|
-
- req-
|
1502
|
+
- req-6c69c614-36d5-4229-a208-fce15d9d3e86
|
1191
1503
|
Content-Length:
|
1192
|
-
- '
|
1504
|
+
- '262'
|
1193
1505
|
Content-Type:
|
1194
1506
|
- application/json
|
1507
|
+
X-Cache:
|
1508
|
+
- MISS from i056593-vagrant
|
1509
|
+
X-Cache-Lookup:
|
1510
|
+
- MISS from i056593-vagrant:3128
|
1511
|
+
Via:
|
1512
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1513
|
+
Connection:
|
1514
|
+
- keep-alive
|
1195
1515
|
body:
|
1196
|
-
encoding:
|
1197
|
-
string:
|
1198
|
-
"extra": {}, "enabled": false, "id": "
|
1516
|
+
encoding: UTF-8
|
1517
|
+
string: '{"project": {"description": "", "links": {"self": "http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16"},
|
1518
|
+
"extra": {}, "enabled": false, "id": "f633bd1df1f74a53b85a003b0b1c5a16", "parent_id":
|
1199
1519
|
null, "domain_id": "default", "name": "p-foobar69"}}'
|
1200
1520
|
http_version:
|
1201
|
-
recorded_at:
|
1521
|
+
recorded_at: Fri, 02 Oct 2015 11:41:30 GMT
|
1202
1522
|
- request:
|
1203
1523
|
method: delete
|
1204
|
-
uri: http://
|
1524
|
+
uri: http://10.97.17.84:35357/v3/projects/f633bd1df1f74a53b85a003b0b1c5a16
|
1205
1525
|
body:
|
1206
1526
|
encoding: US-ASCII
|
1207
1527
|
string: ''
|
1208
1528
|
headers:
|
1209
1529
|
User-Agent:
|
1210
|
-
- fog
|
1530
|
+
- fog-core/1.32.1
|
1531
|
+
Proxy-Connection:
|
1532
|
+
- Keep-Alive
|
1211
1533
|
Content-Type:
|
1212
1534
|
- application/json
|
1213
1535
|
Accept:
|
1214
1536
|
- application/json
|
1215
1537
|
X-Auth-Token:
|
1216
|
-
-
|
1538
|
+
- f6af15c0332e4d3ab7716b51d8fedfff
|
1217
1539
|
response:
|
1218
1540
|
status:
|
1219
1541
|
code: 204
|
1220
1542
|
message: ''
|
1221
1543
|
headers:
|
1222
1544
|
Date:
|
1223
|
-
-
|
1545
|
+
- Fri, 02 Oct 2015 11:41:42 GMT
|
1224
1546
|
Server:
|
1225
1547
|
- Apache/2.4.7 (Ubuntu)
|
1226
1548
|
Vary:
|
1227
1549
|
- X-Auth-Token
|
1228
1550
|
X-Openstack-Request-Id:
|
1229
|
-
- req-
|
1551
|
+
- req-cd2a377f-9fca-4e2c-bb87-f289fd738610
|
1230
1552
|
Content-Length:
|
1231
1553
|
- '0'
|
1554
|
+
X-Cache:
|
1555
|
+
- MISS from i056593-vagrant
|
1556
|
+
X-Cache-Lookup:
|
1557
|
+
- MISS from i056593-vagrant:3128
|
1558
|
+
Via:
|
1559
|
+
- 1.1 i056593-vagrant (squid/3.3.8)
|
1560
|
+
Connection:
|
1561
|
+
- keep-alive
|
1232
1562
|
body:
|
1233
|
-
encoding:
|
1563
|
+
encoding: UTF-8
|
1234
1564
|
string: ''
|
1235
1565
|
http_version:
|
1236
|
-
recorded_at:
|
1566
|
+
recorded_at: Fri, 02 Oct 2015 11:41:30 GMT
|
1237
1567
|
recorded_with: VCR 2.9.3
|